home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / text / hyper / emacs_1858_guide.lha / TermCap.guide (.txt) < prev    next >
Amigaguide Document  |  1993-06-16  |  147KB  |  2,581 lines

  1. @node main "termcap-1"
  2. Info file ../info/termcap, produced by Makeinfo, -*- Text -*- from
  3. input file termcap.texinfo.
  4. This file documents the termcap library of the GNU system.
  5. Copyright (C) 1988 Free Software Foundation, Inc.
  6. Permission is granted to make and distribute verbatim copies of this
  7. manual provided the copyright notice and this permission notice are
  8. preserved on all copies.
  9. Permission is granted to copy and distribute modified versions of
  10. this manual under the conditions for verbatim copying, provided that
  11. the entire resulting derived work is distributed under the terms of a
  12. permission notice identical to this one.
  13. Permission is granted to copy and distribute translations of this
  14. manual into another language, under the above conditions for modified
  15. versions, except that this permission notice may be stated in a
  16. translation approved by the Foundation.
  17. @endnode
  18. @node termcap-Top "termcap-Top"
  19. Up: @{"(DIR)       " LINK termcap-(DIR)}     Next: @{"Introduction" LINK termcap-Introduction}     Prev: @{"(DIR)       " LINK termcap-(DIR)}     
  20. * Menu:
  21.   @{"Introduction" LINK termcap-Introduction}  What is termcap?  Why this manual?
  22.   @{"Library" LINK termcap-Library}       The termcap library functions.
  23.   @{"Data_Base" LINK termcap-Data_Base}     What terminal descriptions in `/etc/termcap' look like.
  24.   @{"Capabilities" LINK termcap-Capabilities}  Definitions of the individual terminal capabilities:
  25.                  how to write them in descriptions, and how to use
  26.                  their values to do display updating.
  27.   @{"Summary" LINK termcap-Summary}      Brief table of capability names and their meanings.
  28.   @{"Var_Index" LINK termcap-Var_Index}     Index of C functions and variables.
  29.   @{"Cap_Index" LINK termcap-Cap_Index}     Index of termcap capabilities.
  30.   @{"Index" LINK termcap-Index}         Concept index.
  31. @endnode
  32. @node termcap-Introduction "termcap-Introduction"
  33. Up: @{"Top         " LINK termcap-Top}     Next: @{"Library     " LINK termcap-Library}     Prev: @{"Top         " LINK termcap-Top}     
  34. Introduction
  35. ************
  36. "Termcap" is a library and data base that enables programs to use
  37. display terminals in a terminal-independent manner.  It originated in
  38. Berkeley Unix.
  39. The termcap data base describes the capabilities of hundreds of
  40. different display terminals in great detail.  Some examples of the
  41. information recorded for a terminal could include how many columns
  42. wide it is, what string to send to move the cursor to an arbitrary
  43. position (including how to encode the row and column numbers), how to
  44. scroll the screen up one or several lines, and how much padding is
  45. needed for such a scrolling operation.
  46. The termcap library is provided for easy access this data base in
  47. programs that want to do terminal-independent character-based display
  48. output.
  49. This manual describes the GNU version of the termcap library, which
  50. has some extensions over the Unix version.  All the extensions are
  51. identified as such, so this manual also tells you how to use the Unix
  52. termcap.
  53. The GNU version of the termcap library is available free as source
  54. code, for use in free programs, and runs on Unix and VMS systems (at
  55. least).  You can find it in the GNU Emacs distribution in the files
  56. `termcap.c' and `tparam.c'.
  57. This manual was written for the GNU project, whose goal is to develop
  58. a complete free operating system upward-compatible with Unix for user
  59. programs.  The project is approximately two thirds complete.  For
  60. more information on the GNU project, including the GNU Emacs editor
  61. and the mostly-portable optimizing C compiler, send one dollar to
  62.      Free Software Foundation
  63.      675 Mass Ave
  64.      Cambridge, MA 02139
  65. @endnode
  66. @node termcap-Library "termcap-Library"
  67. Up: @{"Top         " LINK termcap-Top}     Next: @{"Data_Base   " LINK termcap-Data_Base}     Prev: @{"Introduction" LINK termcap-Introduction}     
  68. The Termcap Library
  69. *******************
  70. The termcap library is the application programmer's interface to the
  71. termcap data base.  It contains functions for the following purposes:
  72.    * Finding the description of the user's terminal type (`tgetent').
  73.    * Interrogating the description for information on various topics
  74.      (`tgetnum', `tgetflag', `tgetstr').
  75.    * Computing and performing padding (`tputs').
  76.    * Encoding numeric parameters such as cursor positions into the
  77.      terminal-specific form required for display commands (`tparam',
  78.      `tgoto').
  79. * Menu:
  80.   @{"Preparation" LINK termcap-Preparation}   Preparing to use the termcap library.
  81.   @{"Find" LINK termcap-Find}          Finding the description of the terminal being used.
  82.   @{"Interrogate" LINK termcap-Interrogate}   Interrogating the description for particular capabilities.
  83.   @{"Initialize" LINK termcap-Initialize}    Initialization for output using termcap.
  84.   @{"Padding" LINK termcap-Padding}       Outputting padding.
  85.   @{"Parameters" LINK termcap-Parameters}    Encoding parameters such as cursor positions.
  86. @endnode
  87. @node termcap-Preparation "termcap-Preparation"
  88. Up: @{"Library     " LINK termcap-Library}     Next: @{"Find        " LINK termcap-Find}     Prev: @{"Library     " LINK termcap-Library}     
  89. Preparing to Use the Termcap Library
  90. ====================================
  91. To use the termcap library in a program, you need two kinds of
  92. preparation:
  93.    * The compiler needs declarations of the functions and variables
  94.      in the library.
  95.      On GNU systems, it suffices to include the header file
  96.      `termcap.h' in each source file that uses these functions and
  97.      variables.
  98.      On Unix systems, there is often no such header file.  Then you
  99.      must explictly declare the variables as external.  You can do
  100.      likewise for the functions, or let them be implicitly declared
  101.      and cast their values from type `int' to the appropriate type.
  102.      We illustrate the declarations of the individual termcap library
  103.      functions with ANSI C prototypes because they show how to pass
  104.      the arguments.  If you are not using the GNU C compiler, you
  105.      probably cannot use function prototypes, so omit the argument
  106.      types and names from your declarations.
  107.    * The linker needs to search the library.  Usually either
  108.      `-ltermcap' or `-ltermlib' as an argument when linking will do
  109.      this.
  110. @endnode
  111. @node termcap-Find "termcap-Find"
  112. Up: @{"Library     " LINK termcap-Library}     Next: @{"Interrogate " LINK termcap-Interrogate}     Prev: @{"Preparation " LINK termcap-Preparation}     
  113. Finding a Terminal Description: `tgetent'
  114. =========================================
  115. An application program that is going to use termcap must first look
  116. up the description of the terminal type in use.  This is done by
  117. calling `tgetent', whose declaration in ANSI Standard C looks like:
  118.      int tgetent (char *BUFFER, char *TERMTYPE);
  119. This function finds the description and remembers it internally so
  120. that you can interrogate it about specific terminal capabilities
  121. (*note Interrogate::.).
  122. The argument TERMTYPE is a string which is the name for the type of
  123. terminal to look up.  Usually you would obtain this from the
  124. environment variable `TERM' using `getenv ("TERM")'.
  125. If you are using the GNU version of termcap, you can alternatively
  126. ask `tgetent' to allocate enough space.  Pass a null pointer for
  127. BUFFER, and `tgetent' itself allocates the storage using `malloc'. 
  128. In this case the returned value on success is the address of the
  129. storage, cast to `int'.  But normally there is no need for you to
  130. look at the address.  Do not free the storage yourself.
  131. With the Unix version of termcap, you must allocate space for the
  132. description yourself and pass the address of the space as the
  133. argument BUFFER.  There is no way you can tell how much space is
  134. needed, so the convention is to allocate a buffer 2048 characters
  135. long and assume that is enough.  (Formerly the convention was to
  136. allocate 1024 characters and assume that was enough.  But one day,
  137. for one kind of terminal, that was not enough.)
  138. No matter how the space to store the description has been obtained,
  139. termcap records its address internally for use when you later
  140. interrogate the description with `tgetnum', `tgetstr' or `tgetflag'. 
  141. If the buffer was allocated by termcap, it will be freed by termcap
  142. too if you call `tgetent' again.  If the buffer was provided by you,
  143. you must make sure that its contents remain unchanged for as long as
  144. you still plan to interrogate the description.
  145. The return value of `tgetent' is -1 if there is some difficulty
  146. accessing the data base of terminal types, 0 if the data base is
  147. accessible but the specified type is not defined in it, and some
  148. other value otherwise.
  149. Here is how you might use the function `tgetent':
  150.      #ifdef unix
  151.      static char term_buffer[2048];
  152.      #else
  153.      #define term_buffer 0
  154.      #endif
  155.      
  156.      init_terminal_data ()
  157.      {
  158.        char *termtype = getenv ("TERM");
  159.        int success;
  160.      
  161.        if (termtype == 0)
  162.          fatal ("Specify a terminal type with `setenv TERM <yourtype>'.\n");
  163.      
  164.        success = tgetent (term_buffer, termtype);
  165.        if (success < 0)
  166.          fatal ("Could not access the termcap data base.\n");
  167.        if (success == 0)
  168.          fatal ("Terminal type `%s' is not defined.\n", termtype);
  169.      }
  170. Here we assume the function `fatal' prints an error message and exits.
  171. If the environment variable `TERMCAP' is defined, its value is used
  172. to override the terminal type data base.  The function `tgetent'
  173. checks the value of `TERMCAP' automatically.  If the value starts
  174. with `/' then it is taken as a file name to use as the data base
  175. file, instead of `/etc/termcap' which is the standard data base.  If
  176. the value does not start with `/' then it is itself used as the
  177. terminal description, provided that the terminal type TERMTYPE is
  178. among the types it claims to apply to.    @{"Data Base" LINK termcap-Data Base} for
  179. information on the format of a terminal description.
  180. @endnode
  181. @node termcap-Interrogate "termcap-Interrogate"
  182. Up: @{"Library     " LINK termcap-Library}     Next: @{"Initialize  " LINK termcap-Initialize}     Prev: @{"Find        " LINK termcap-Find}     
  183. Interrogating the Terminal Description
  184. ======================================
  185. Each piece of information recorded in a terminal description is
  186. called a "capability".  Each defined terminal capability has a
  187. two-letter code name and a specific meaning.  For example, the number
  188. of columns is named `co'.    @{"Capabilities" LINK termcap-Capabilities} for definitions of
  189. all the standard capability names.
  190. Once you have found the proper terminal description with `tgetent'
  191. (*note Find::.), your application program must "interrogate" it for
  192. various terminal capabilities.  You must specify the two-letter code
  193. of the capability whose value you seek.
  194. Capability values can be numeric, boolean (capability is either
  195. present or absent) or strings.  Any particular capability always has
  196. the same value type; for example, `co' always has a numeric value,
  197. while `am' (automatic wrap at margin) is always a flag, and `cm'
  198. (cursor motion command) always has a string value.  The documentation
  199. of each capability says which type of value it has.
  200. There are three functions to use to get the value of a capability,
  201. depending on the type of value the capability has.  Here are their
  202. declarations in ANSI C:
  203.      int tgetnum (char *NAME);
  204.      int tgetflag (char *NAME);
  205.      char *tgetstr (char *NAME, char **AREA);
  206. `tgetnum'
  207.      Use `tgetnum' to get a capability value that is numeric.  The
  208.      argument NAME is the two-letter code name of the capability.  If
  209.      the capability is present, `tgetnum' returns the numeric value
  210.      (which is nonnegative).  If the capability is not mentioned in
  211.      the terminal description, `tgetnum' returns -1.
  212. `tgetflag'
  213.      Use `tgetflag' to get a boolean value.  If the capability NAME
  214.      is present in the terminal description, `tgetflag' returns 1;
  215.      otherwise, it returns 0.
  216. `tgetstr'
  217.      Use `tgetstr' to get a string value.  It returns a pointer to a
  218.      string which is the capability value, or a null pointer if the
  219.      capability is not present in the terminal description.
  220.      There are two ways `tgetstr' can find space to store the string
  221.      value:
  222.         * You can ask `tgetstr' to allocate the space.  Pass a null
  223.           pointer for the argument AREA, and `tgetstr' will use
  224.           `malloc' to allocate storage big enough for the value. 
  225.           Termcap will never free this storage or refer to it again;
  226.           you should free it when you are finished with it.
  227.           This method is more robust, since there is no need to guess
  228.           how much space is needed.  But it is supported only by the
  229.           GNU termcap library.
  230.         * You can provide the space.  Provide for the argument AREA
  231.           the address of a pointer variable of type `char *'.  Before
  232.           calling `tgetstr', initialize the variable to point at
  233.           available space.  Then `tgetstr' will store the string
  234.           value in that space and will increment the pointer variable
  235.           to point after the space that has been used.  You can use
  236.           the same pointer variable for many calls to `tgetstr'.
  237.           There is no way to determine how much space is needed for a
  238.           single string, and no way for you to prevent or handle
  239.           overflow of the area you have provided.  However, you can
  240.           be sure that the total size of all the string values you
  241.           will obtain from the terminal description is no greater
  242.           than the size of the description (unless you get the same
  243.           capability twice).  You can determine that size with
  244.           `strlen' on the buffer you provided to `tgetent'.  See
  245.           below for an example.
  246.           Providing the space yourself is the only method supported
  247.           by the Unix version of termcap.
  248. Note that you do not have to specify a terminal type or terminal
  249. description for the interrogation functions.  They automatically use
  250. the description found by the most recent call to `tgetent'.
  251. Here is an example of interrogating a terminal description for
  252. various capabilities, with conditionals to select between the Unix
  253. and GNU methods of providing buffer space.
  254.      char *tgetstr ();
  255.      
  256.      char *cl_string, *cm_string;
  257.      int height;
  258.      int width;
  259.      int auto_wrap;
  260.      
  261.      char PC;   /* For tputs.  */
  262.      char *BC;  /* For tgoto.  */
  263.      char *UP;
  264.      
  265.      interrogate_terminal ()
  266.      {
  267.      #ifdef UNIX
  268.        /* Here we assume that an explicit term_buffer
  269.           was provided to tgetent.  */
  270.        char *buffer
  271.          = (char *) malloc (strlen (term_buffer));
  272.      #define BUFFADDR &buffer
  273.      #else
  274.      #define BUFFADDR 0
  275.      #endif
  276.      
  277.        char *temp;
  278.      
  279.        /* Extract information we will use.  */
  280.        cl_string = tgetstr ("cl", BUFFADDR);
  281.        cm_string = tgetstr ("cm", BUFFADDR);
  282.        auto_wrap = tgetflag ("am");
  283.        height = tgetnum ("li");
  284.        width = tgetnum ("co");
  285.      
  286.        /* Extract information that termcap functions use.  */
  287.        temp = tgetstr ("pc", BUFFADDR);
  288.        PC = temp ? *temp : 0;
  289.        BC = tgetstr ("le", BUFFADDR);
  290.        UP = tgetstr ("up", BUFFADDR);
  291.      }
  292.   @{"Padding" LINK termcap-Padding} for information on the variable `PC'.  *Note Using
  293. Parameters::, for information on `UP' and `BC'.
  294. @endnode
  295. @node termcap-Initialize "termcap-Initialize"
  296. Up: @{"Library     " LINK termcap-Library}     Next: @{"Padding     " LINK termcap-Padding}     Prev: @{"Interrogate " LINK termcap-Interrogate}     
  297. Initialization for Use of Termcap
  298. =================================
  299. Before starting to output commands to a terminal using termcap, an
  300. application program should do two things:
  301.    * Initialize various global variables which termcap library output
  302.      functions refer to.  These include `PC' and `ospeed' for padding
  303.      (*note Output Padding::.) and `UP' and `BC' for cursor motion
  304.      (*note tgoto::.).
  305.    * Tell the kernel to turn off alteration and padding of
  306.      horizontal-tab characters sent to the terminal.
  307. To turn off output processing in Berkeley Unix you would use `ioctl'
  308. with code `TIOCLSET' to set the bit named `LLITOUT', and clear the
  309. bits `ANYDELAY' using `TIOCSETN'.  In POSIX or System V, you must
  310. clear the bit named `OPOST'.  Refer to the system documentation for
  311. details.
  312. If you do not set the terminal flags properly, some older terminals
  313. will not work.  This is because their commands may contain the
  314. characters that normally signify newline, carriage return and
  315. horizontal tab--characters which the kernel thinks it ought to modify
  316. before output.
  317. When you change the kernel's terminal flags, you must arrange to
  318. restore them to their normal state when your program exits.  This
  319. implies that the program must catch fatal signals such as `SIGQUIT'
  320. and `SIGINT' and restore the old terminal flags before actually
  321. terminating.
  322. Modern terminals' commands do not use these special characters, so if
  323. you do not care about problems with old terminals, you can leave the
  324. kernel's terminal flags unaltered.
  325. @endnode
  326. @node termcap-Padding "termcap-Padding"
  327. Up: @{"Library     " LINK termcap-Library}     Next: @{"Parameters  " LINK termcap-Parameters}     Prev: @{"Initialize  " LINK termcap-Initialize}     
  328. Padding
  329. =======
  330. "Padding" means outputting null characters following a terminal
  331. display command that takes a long time to execute.  The terminal
  332. description says which commands require padding and how much; the
  333. function `tputs', described below, outputs a terminal command while
  334. extracting from it the padding information, and then outputs the
  335. padding that is necessary.
  336. * Menu:
  337.   @{"Why_Pad" LINK termcap-Why_Pad}            Explanation of padding.
  338.   @{"Describe_Padding" LINK termcap-Describe_Padding}   The data base says how much padding a terminal needs.
  339.   @{"Output_Padding" LINK termcap-Output_Padding}     Using `tputs' to output the needed padding.
  340. @endnode
  341. @node termcap-Why_Pad "termcap-Why_Pad"
  342. Up: @{"Padding     " LINK termcap-Padding}     Next: @{"Describe_Padding" LINK termcap-Describe_Padding}     Prev: @{"Padding     " LINK termcap-Padding}     
  343. Why Pad, and How
  344. ----------------
  345. Most types of terminal have commands that take longer to execute than
  346. they do to send over a high-speed line.  For example, clearing the
  347. screen may take 20msec once the entire command is received.  During
  348. that time, on a 9600 bps line, the terminal could receive about 20
  349. additional output characters while still busy clearing the screen. 
  350. Every terminal has a certain amount of buffering capacity to remember
  351. output characters that cannot be processed yet, but too many slow
  352. commands in a row can cause the buffer to fill up.  Then any
  353. additional output that cannot be processed immediately will be lost.
  354. To avoid this problem, we normally follow each display command with
  355. enough useless charaters (usually null characters) to fill up the
  356. time that the display command needs to execute.  This does the job if
  357. the terminal throws away null characters without using up space in
  358. the buffer (which most terminals do).  If enough padding is used, no
  359. output can ever be lost.  The right amount of padding avoids loss of
  360. output without slowing down operation, since the time used to
  361. transmit padding is time that nothing else could be done.
  362. The number of padding characters needed for an operation depends on
  363. the line speed.  In fact, it is proportional to the line speed.  A
  364. 9600 baud line transmits about one character per msec, so the clear
  365. screen command in the example above would need about 20 characters of
  366. padding.  At 1200 baud, however, only about 3 characters of padding
  367. are needed to fill up 20msec.
  368. @endnode
  369. @node termcap-Describe_Padding "termcap-Describe_Padding"
  370. Up: @{"Padding     " LINK termcap-Padding}     Next: @{"Output_Padding" LINK termcap-Output_Padding}     Prev: @{"Why_Pad     " LINK termcap-Why_Pad}     
  371. Specifying Padding in a Terminal Description
  372. --------------------------------------------
  373. In the terminal description, the amount of padding required by each
  374. display command is recorded as a sequence of digits at the front of
  375. the command.  These digits specify the padding time in msec.  They
  376. can be followed optionally by a decimal point and one more digit,
  377. which is a number of tenths of msec.
  378. Sometimes the padding needed by a command depends on the cursor
  379. position.  For example, the time taken by an "insert line" command is
  380. usually proportional to the number of lines that need to be moved
  381. down or cleared.  An asterisk (`*') following the padding time says
  382. that the time should be multiplied by the number of screen lines
  383. affected by the command.
  384.      :al=1.3*\E[L:
  385. is used to describe the "insert line" command for a certain terminal.
  386. The padding required is 1.3 msec per line affected.  The command
  387. itself is `ESC [ L'.
  388. The padding time specified in this way tells `tputs' how many pad
  389. characters to output.    @{"Output Padding" LINK termcap-Output Padding}
  390. Two special capability values affect padding for all commands.  These
  391. are the `pc' and `pb'.  The variable `pc' specifies the character to
  392. pad with, and `pb' the speed below which no padding is needed.  The
  393. defaults for these variables, a null character and 0, are correct for
  394. most terminals.    @{"Pad Specs" LINK termcap-Pad Specs}
  395. @endnode
  396. @node termcap-Output_Padding "termcap-Output_Padding"
  397. Up: @{"Padding     " LINK termcap-Padding}     Next: @{"Output_Padding" LINK termcap-Output_Padding}     Prev: @{"Describe_Padding" LINK termcap-Describe_Padding}     
  398. Performing Padding with `tputs'
  399. -------------------------------
  400. Use the termcap function `tputs' to output a string containing an
  401. optional padding spec of the form described above (*note Describe
  402. Padding::.).  The function `tputs' strips off and decodes the padding
  403. spec, outputs the rest of the string, and then outputs the
  404. appropriate padding.  Here is its declaration in ANSI C:
  405.      char PC;
  406.      short ospeed;
  407.      
  408.      int tputs (char *STRING, int NLINES, int (*OUTFUN) ());
  409. Here STRING is the string (including padding spec) to be output;
  410. NLINES is the number of lines affected by the operation, which is
  411. used to multiply the amount of padding if the padding spec ends with
  412. a `*'.  Finally, OUTFUN is a function (such as `fputchar') that is
  413. called to output each character.  When actually called, OUTFUN should
  414. expect one argument, a character.
  415. The operation of `tputs' is controlled by two global variables,
  416. `ospeed' and `PC'.  The value of `ospeed' is supposed to be the
  417. terminal output speed, encoded as in the `ioctl' system call which
  418. gets the speed information.  This is needed to compute the number of
  419. padding characters.  The value of `PC' is the character used for
  420. padding.
  421. You are responsible for storing suitable values into these variables
  422. before using `tputs'.  The value stored into the `PC' variable should
  423. be taken from the `pc' capability in the terminal description (*note
  424. Pad Specs::.).  Store zero in `PC' if there is no `pc' capability.
  425. The argument NLINES requires some thought.  Normally, it should be
  426. the number of lines whose contents will be cleared or moved by the
  427. command.  For cursor motion commands, or commands that do editing
  428. within one line, use the value 1.  For most commands that affect
  429. multiple lines, such as `al' (insert a line) and `cd' (clear from the
  430. cursor to the end of the screen), NLINES should be the screen height
  431. minus the current vertical position (origin 0).  For multiple insert
  432. and scroll commands such as `AL' (insert multiple lines), that same
  433. value for NLINES is correct; the number of lines being inserted is
  434. not correct.
  435. If a "scroll window" feature is used to reduce the number of lines
  436. affected by a command, the value of NLINES should take this into
  437. account.  This is because the delay time required depends on how much
  438. work the terminal has to do, and the scroll window feature reduces
  439. the work.    @{"Scrolling" LINK termcap-Scrolling}
  440. Commands such as `ic' and `dc' (insert or delete characters) are
  441. problematical because the padding needed by these commands is
  442. proportional to the number of characters affected, which is the
  443. number of columns from the cursor to the end of the line.  It would
  444. be nice to have a way to specify such a dependence, and there is no
  445. need for dependence on vertical position in these commands, so it is
  446. an obvious idea to say that for these commands NLINES should really
  447. be the number of columns affected.  However, the definition of
  448. termcap clearly says that NLINES is always the number of lines
  449. affected, even in this case, where it is always 1.  It is not easy to
  450. change this rule now, because too many programs and terminal
  451. descriptions have been written to follow it.
  452. Because NLINES is always 1 for the `ic' and `dc' strings, there is no
  453. reason for them to use `*', but some of them do.  These should be
  454. corrected by deleting the `*'.  If, some day, such entries have
  455. disappeared, it may be possible to change to a more useful convention
  456. for the NLINES argument for these operations without breaking any
  457. programs.
  458. @endnode
  459. @node termcap-Parameters "termcap-Parameters"
  460. Up: @{"Library     " LINK termcap-Library}     Next: @{"Output_Padding" LINK termcap-Output_Padding}     Prev: @{"Padding     " LINK termcap-Padding}     
  461. Filling In Parameters
  462. =====================
  463. Some terminal control strings require numeric "parameters".  For
  464. example, when you move the cursor, you need to say what horizontal
  465. and vertical positions to move it to.  The value of the terminal's
  466. `cm' capability, which says how to move the cursor, cannot simply be
  467. a string of characters; it must say how to express the cursor
  468. position numbers and where to put them within the command.
  469. The specifications of termcap include conventions as to which
  470. string-valued capabilities require parameters, how many parameters,
  471. and what the parameters mean; for example, it defines the `cm' string
  472. to take two parameters, the vertical and horizontal positions, with
  473. 0,0 being the upper left corner.  These conventions are described
  474. where the individual commands are documented.
  475. Termcap also defines a language used within the capability definition
  476. for specifying how and where to encode the parameters for output. 
  477. This language uses character sequences starting with `%'.  (This is
  478. the same idea as `printf', but the details are different.)  The
  479. language for parameter encoding is described in this section.
  480. A program that is doing display output calls the functions `tparam'
  481. or `tgoto' to encode parameters according to the specifications. 
  482. These functions produce a string containing the actual commands to be
  483. output (as well a padding spec which must be processed with `tputs';
  484. *note Padding::.).
  485. * Menu:
  486.   @{"Encode_Parameters" LINK termcap-Encode_Parameters}   The language for encoding parameters.
  487.   @{"Using_Parameters" LINK termcap-Using_Parameters}    Outputting a string command with parameters.
  488. @endnode
  489. @node termcap-Encode_Parameters "termcap-Encode_Parameters"
  490. Up: @{"Parameters  " LINK termcap-Parameters}     Next: @{"Using_Parameters" LINK termcap-Using_Parameters}     Prev: @{"Parameters  " LINK termcap-Parameters}     
  491. Describing the Encoding
  492. -----------------------
  493. A terminal command string that requires parameters contains special
  494. character sequences starting with `%' to say how to encode the
  495. parameters.  These sequences control the actions of `tparam' and
  496. `tgoto'.
  497. The parameters values passed to `tparam' or `tgoto' are considered to
  498. form a vector.  A pointer into this vector determines the next
  499. parameter to be processed.  Some of the `%'-sequences encode one
  500. parameter and advance the pointer to the next parameter.  Other
  501. `%'-sequences alter the pointer or alter the parameter values without
  502. generating output.
  503. For example, the `cm' string for a standard ANSI terminal is written
  504. as `\E[%i%d;%dH'.  (`\E' stands for ESC.)  `cm' by convention always
  505. requires two parameters, the vertical and horizontal goal positions,
  506. so this string specifies the encoding of two parameters.  Here `%i'
  507. increments the two values supplied, and each `%d' encodes one of the
  508. values in decimal.  If the cursor position values 20,58 are encoded
  509. with this string, the result is `\E[21;59H'.
  510. First, here are the `%'-sequences that generate output.  Except for
  511. `%%', each of them encodes one parameter and advances the pointer to
  512. the following parameter.
  513.      Output a single `%'.  This is the only way to represent a
  514.      literal `%' in a terminal command with parameters.  `%%' does
  515.      not use up a parameter.
  516.      As in `printf', output the next parameter in decimal.
  517.      Like `%02d' in `printf': output the next parameter in decimal,
  518.      and always use at least two digits.
  519.      Like `%03d' in `printf': output the next parameter in decimal,
  520.      and always use at least three digits.  Note that `%4' and so on
  521.      are *not* defined.
  522.      Output the next parameter as a single character whose ASCII code
  523.      is the parameter value.  Like `%c' in `printf'.
  524. `%+CHAR'
  525.      Add the next parameter to the character CHAR, and output the
  526.      resulting character.  For example, `%+ ' represents 0 as a
  527.      space, 1 as `!', etc.
  528. The following `%'-sequences specify alteration of the parameters
  529. (their values, or their order) rather than encoding a parameter for
  530. output.  They generate no output; they are used only for their side
  531. effects on the parameters.  Also, they do not advance the "next
  532. parameter" pointer except as explicitly stated.  Only `%i', `%r' and
  533. `%>' are defined in standard Unix termcap.  The others are GNU
  534. extensions.
  535.      Increment the next two parameters.  This is used for terminals
  536.      that expect cursor positions in origin 1.  For example,
  537.      `%i%d,%d' would output two parameters with `1' for 0, `2' for 1,
  538.      etc.
  539.      Interchange the next two parameters.  This is used for terminals
  540.      whose cursor positioning command expects the horizontal position
  541.      first.
  542.      Skip the next parameter.  Do not output anything.
  543.      Back up one parameter.  The last parameter used will become once
  544.      again the next parameter to be output, and the next output
  545.      command will use it.  Using `%b' more than once, you can back up
  546.      any number of parameters, and you can refer to each parameter
  547.      any number of times.
  548. `%>C1C2'
  549.      Conditionally increment the next parameter.  Here C1 and C2 are
  550.      characters which stand for their ASCII codes as numbers.  If the
  551.      next parameter is greater than the ASCII code of C1, the ASCII
  552.      code of C2 is added to it.
  553. `%a OP TYPE POS'
  554.      Perform arithmetic on the next parameter, do not use it up, and
  555.      do not output anything.  Here OP specifies the arithmetic
  556.      operation, while TYPE and POS together specify the other operand.
  557.      Spaces are used above to separate the operands for clarity; the
  558.      spaces don't appear in the data base, where this sequence is
  559.      exactly five characters long.
  560.      The character OP says what kind of arithmetic operation to
  561.      perform.  It can be any of these characters:
  562.     `='
  563.           assign a value to the next parameter, ignoring its old value.
  564.           The new value comes from the other operand.
  565.     `+'
  566.           add the other operand to the next parameter.
  567.     `-'
  568.           subtract the other operand from the next parameter.
  569.     `*'
  570.           multiply the next parameter by the other operand.
  571.     `/'
  572.           divide the next parameter by the other operand.
  573.      The "other operand" may be another parameter's value or a
  574.      constant; the character TYPE says which.  It can be:
  575.     `p'
  576.           Use another parameter.  The character POS says which
  577.           parameter to use.  Subtract 64 from its ASCII code to get
  578.           the position of the desired parameter relative to this one.
  579.           Thus, the character `A' as POS means the parameter after
  580.           the next one; the character `?' means the parameter before
  581.           the next one.
  582.     `c'
  583.           Use a constant value.  The character POS specifies the
  584.           value of the constant.  The 0200 bit is cleared out, so
  585.           that 0200 can be used to represent zero.
  586. The following `%'-sequences are special purpose hacks to compensate
  587. for the weird designs of obscure terminals.  They modify the next
  588. parameter or the next two parameters but do not generate output and
  589. do not use up any parameters.  `%m' is a GNU extension; the others
  590. are defined in standard Unix termcap.
  591.      Exclusive-or the next parameter with 0140, and likewise the
  592.      parameter after next.
  593.      Complement all the bits of the next parameter and the parameter
  594.      after next.
  595.      Encode the next parameter in BCD.  It alters the value of the
  596.      parameter by adding six times the quotient of the parameter by
  597.      ten.  Here is a C statement that shows how the new value is
  598.      computed:
  599.           PARM = (PARM / 10) * 16 + PARM % 10;
  600.      Transform the next parameter as needed by Delta Data terminals. 
  601.      This involves subtracting twice the remainder of the parameter
  602.      by 16.
  603.           PARM -= 2 * (PARM % 16);
  604. @endnode
  605. @node termcap-Using_Parameters "termcap-Using_Parameters"
  606. Up: @{"Parameters  " LINK termcap-Parameters}     Next: @{"Using_Parameters" LINK termcap-Using_Parameters}     Prev: @{"Encode_Parameters" LINK termcap-Encode_Parameters}     
  607. Sending Display Commands with Parameters
  608. ----------------------------------------
  609. The termcap library functions `tparam' and `tgoto' serve as the
  610. analog of `printf' for terminal string parameters.  The newer
  611. function `tparam' is a GNU extension, more general but missing from
  612. Unix termcap.  The original parameter-encoding function is `tgoto',
  613. which is preferable for cursor motion.
  614. * Menu:
  615.   @{"tparam" LINK termcap-tparam}     The general case, for GNU termcap only.
  616.   @{"tgoto" LINK termcap-tgoto}      The special case of cursor motion.
  617. @endnode
  618. @node termcap-tparam "termcap-tparam"
  619. Up: @{"Using_Parameters" LINK termcap-Using_Parameters}     Next: @{"tgoto       " LINK termcap-tgoto}     Prev: @{"Using_Parameters" LINK termcap-Using_Parameters}     
  620. `tparam'
  621. ........
  622.  The function `tparam' can encode display commands with any number of
  623. parameters and allows you to specify the buffer space.  It is the
  624. preferred function for encoding parameters for all but the `cm'
  625. capability.  Its ANSI C declaration is as follows:
  626.      char *tparam (char *CTLSTRING, char *BUFFER, int SIZE, int PARM1,...)
  627. The arguments are a control string CTLSTRING (the value of a terminal
  628. capability, presumably), an output buffer BUFFER and SIZE, and any
  629. number of integer parameters to be encoded.  The effect of `tparam'
  630. is to copy the control string into the buffer, encoding parameters
  631. according to the `%' sequences in the control string.
  632. You describe the output buffer by its address, BUFFER, and its size
  633. in bytes, SIZE.  If the buffer is not big enough for the data to be
  634. stored in it, `tparam' calls `malloc' to get a larger buffer.  In
  635. either case, `tparam' returns the address of the buffer it ultimately
  636. uses.  If the value equals BUFFER, your original buffer was used. 
  637. Otherwise, a new buffer was allocated, and you must free it after you
  638. are done with printing the results.  If you pass zero for SIZE and
  639. BUFFER, `tparam' always allocates the space with `malloc'.
  640. All capabilities that require parameters also have the ability to
  641. specify padding, so you should use `tputs' to output the string
  642. produced by `tparam'.    @{"Padding" LINK termcap-Padding}  Here is an example.
  643.      {
  644.        char *buf;
  645.        char buffer[40];
  646.      
  647.        buf = tparam (command, buffer, 40, parm);
  648.        tputs (buf, 1, fputchar);
  649.        if (buf != buffer)
  650.          free (buf);
  651.      }
  652. If a parameter whose value is zero is encoded with `%.'-style
  653. encoding, the result is a null character, which will confuse `tputs'.
  654. This would be a serious problem, but luckily `%.' encoding is used
  655. only by a few old models of terminal, and only for the `cm'
  656. capability.  To solve the problem, use `tgoto' rather than `tparam'
  657. to encode the `cm' capability.
  658. @endnode
  659. @node termcap-tgoto "termcap-tgoto"
  660. Up: @{"Using_Parameters" LINK termcap-Using_Parameters}     Next: @{"tgoto       " LINK termcap-tgoto}     Prev: @{"tparam      " LINK termcap-tparam}     
  661. `tgoto'
  662. .......
  663.  The special case of cursor motion is handled by `tgoto'.  There are
  664. two reasons why you might choose to use `tgoto':
  665.    * For Unix compatibility, because Unix termcap does not have
  666.      `tparam'.
  667.    * For the `cm' capability, since `tgoto' has a special feature to
  668.      avoid problems with null characters, tabs and newlines on
  669.      certain old terminal types that use `%.' encoding for that
  670.      capability.
  671. Here is how `tgoto' might be declared in ANSI C:
  672.      char *tgoto (char *CSTRING, int HPOS, int VPOS)
  673. There are three arguments, the terminal description's `cm' string and
  674. the two cursor position numbers; `tgoto' computes the parametrized
  675. string in an internal static buffer and returns the address of that
  676. buffer.  The next time you use `tgoto' the same buffer will be reused.
  677. Parameters encoded with `%.' encoding can generate null characters,
  678. tabs or newlines.  These might cause trouble: the null character
  679. because `tputs' would think that was the end of the string, the tab
  680. because the kernel or other software might expand it into spaces, and
  681. the newline becaue the kernel might add a carriage-return, or padding
  682. characters normally used for a newline.  To prevent such problems,
  683. `tgoto' is careful to avoid these characters.  Here is how this
  684. works: if the target cursor position value is such as to cause a
  685. problem (that is to say, zero, nine or ten), `tgoto' increments it by
  686. one, then compensates by appending a string to move the cursor back
  687. or up one position.
  688. The compensation strings to use for moving back or up are found in
  689. global variables named `BC' and `UP'.  These are actual external C
  690. variables with upper case names; they are declared `char *'.  It is
  691. up to you to store suitable values in them, normally obtained from
  692. the `le' and `up' terminal capabilities in the terminal description
  693. with `tgetstr'.  Alternatively, if these two variables are both zero,
  694. the feature of avoiding nulls, tabs and newlines is turned off.
  695. It is safe to use `tgoto' for commands other than `cm' only if you
  696. have stored zero in `BC' and `UP'.
  697. Note that `tgoto' reverses the order of its operands: the horizontal
  698. position comes before the vertical position in the arguments to
  699. `tgoto', even though the vertical position comes before the
  700. horizontal in the parameters of the `cm' string.  If you use `tgoto'
  701. with a command such as `AL' that takes one parameter, you must pass
  702. the parameter to `tgoto' as the "vertical position".
  703. @endnode
  704. @node termcap-Data_Base "termcap-Data_Base"
  705. Up: @{"Top         " LINK termcap-Top}     Next: @{"Capabilities" LINK termcap-Capabilities}     Prev: @{"Library     " LINK termcap-Library}     
  706. The Format of the Data Base
  707. ***************************
  708. The termcap data base of terminal descriptions is stored in the file
  709. `/etc/termcap'.  It contains terminal descriptions, blank lines, and
  710. comments.
  711. A terminal description starts with one or more names for the terminal
  712. type.  The information in the description is a series of "capability
  713. names" and values.  The capability names have standard meanings
  714. (*note Capabilities::.) and their values describe the terminal.
  715. * Menu:
  716.   @{"Format" LINK termcap-Format}              Overall format of a terminal description.
  717.   @{"Capability_Format" LINK termcap-Capability_Format}   Format of capabilities within a description.
  718.   @{"Naming" LINK termcap-Naming}              Naming conventions for terminal types.
  719.   @{"Inheriting" LINK termcap-Inheriting}          Inheriting part of a description from
  720.                         a related terminal type.
  721. @endnode
  722. @node termcap-Format "termcap-Format"
  723. Up: @{"Data_Base   " LINK termcap-Data_Base}     Next: @{"Capability_Format" LINK termcap-Capability_Format}     Prev: @{"Data_Base   " LINK termcap-Data_Base}     
  724. Terminal Description Format
  725. ===========================
  726. Aside from comments (lines starting with `#', which are ignored),
  727. each nonblank line in the termcap data base is a terminal description.
  728. A terminal description is nominally a single line, but it can be
  729. split into multiple lines by inserting the two characters `\ newline'.
  730. This sequence is ignored wherever it appears in a description.
  731. The preferred way to split the description is between capabilities:
  732. insert the four characters `: \ newline tab' immediately before any
  733. colon.  This allows each sub-line to start with some indentation. 
  734. This works because, after the `\ newline' are ignored, the result is
  735. `: tab :'; the first colon ends the preceding capability and the
  736. second colon starts the next capability.  If you split with `\
  737. newline' alone, you may not add any indentation after them.
  738. Here is a real example of a terminal description:
  739.      dw|vt52|DEC vt52:\
  740.              :cr=^M:do=^J:nl=^J:bl=^G:\
  741.              :le=^H:bs:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :co#80:li#24:\
  742.              :nd=\EC:ta=^I:pt:sr=\EI:up=\EA:\
  743.              :ku=\EA:kd=\EB:kr=\EC:kl=\ED:kb=^H:
  744. Each terminal description begins with several names for the terminal
  745. type.  The names are separated by `|' characters, and a colon ends
  746. the last name.  The first name should be two characters long; it
  747. exists only for the sake of very old Unix systems and is never used
  748. in modern systems.  The last name should be a fully verbose name such
  749. as "DEC vt52" or "Ann Arbor Ambassador with 48 lines".  The other
  750. names should include whatever the user ought to be able to specify to
  751. get this terminal type, such as `vt52' or `aaa-48'.    @{"Naming" LINK termcap-Naming}
  752. for information on how to choose terminal type names.
  753. After the terminal type names come the terminal capabilities,
  754. separated by colons and with a colon after the last one.  Each
  755. capability has a two-letter name, such as `cm' for "cursor motion
  756. string" or `li' for "number of display lines".
  757. @endnode
  758. @node termcap-Capability_Format "termcap-Capability_Format"
  759. Up: @{"Data_Base   " LINK termcap-Data_Base}     Next: @{"Naming      " LINK termcap-Naming}     Prev: @{"Format      " LINK termcap-Format}     
  760. Writing the Capabilities
  761. ========================
  762. There are three kinds of capabilities: flags, numbers, and strings. 
  763. Each kind has its own way of being written in the description.  Each
  764. defined capability has by convention a particular kind of value; for
  765. example, `li' always has a numeric value and `cm' always a string
  766. value.
  767. A flag capability is thought of as having a boolean value: the value
  768. is true if the capability is present, false if not.  When the
  769. capability is present, just write its name between two colons.
  770. A numeric capability has a value which is a nonnegative number. 
  771. Write the capability name, a `#', and the number, between two colons.
  772. For example, `...:li#48:...' is how you specify the `li' capability
  773. for 48 lines.
  774. A string-valued capability has a value which is a sequence of
  775. characters.  Usually these are the characters used to perform some
  776. display operation.  Write the capability name, a `=', and the
  777. characters of the value, between two colons.  For example,
  778. `...:cm=\E[%i%d;%dH:...' is how the cursor motion command for a
  779. standard ANSI terminal would be specified.
  780. Special characters in the string value can be expressed using
  781. `\'-escape sequences as in C; in addition, `\E' stands for ESC.  `^'
  782. is also a kind of escape character; `^' followed by CHAR stands for
  783. the control-equivalent of CHAR.  Thus, `^a' stands for the character
  784. control-a, just like `\001'.  `\' and `^' themselves can be
  785. represented as `\\' and `\^'.
  786. To include a colon in the string, you must write `\072'.  You might
  787. ask, "Why can't `\:' be used to represent a colon?"  The reason is
  788. that the interrogation functions do not count slashes while looking
  789. for a capability.  Even if `:ce=ab\:cd:' were interpreted as giving
  790. the `ce' capability the value `ab:cd', it would also appear to define
  791. `cd' as a flag.
  792. The string value will often contain digits at the front to specify
  793. padding (*note Padding::.) and/or `%'-sequences within to specify how
  794. to encode parameters (*note Parameters::.).  Although these things
  795. are not to be output literally to the terminal, they are considered
  796. part of the value of the capability.  They are special only when the
  797. string value is processed by `tputs', `tparam' or `tgoto'.  By
  798. contrast, `\' and `^' are considered part of the syntax for
  799. specifying the characters in the string.
  800. Let's look at the VT52 example again:
  801.      dw|vt52|DEC vt52:\
  802.              :cr=^M:do=^J:nl=^J:bl=^G:\
  803.              :le=^H:bs:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :co#80:li#24:\
  804.              :nd=\EC:ta=^I:pt:sr=\EI:up=\EA:\
  805.              :ku=\EA:kd=\EB:kr=\EC:kl=\ED:kb=^H:
  806. Here we see the numeric-valued capabilities `co' and `li', the flags
  807. `bs' and `pt', and many string-valued capabilities.  Most of the
  808. strings start with ESC represented as `\E'.  The rest contain control
  809. characters represented using `^'.  The meanings of the individual
  810. capabilities are defined elsewhere (*note Capabilities::.).
  811. @endnode
  812. @node termcap-Naming "termcap-Naming"
  813. Up: @{"Data_Base   " LINK termcap-Data_Base}     Next: @{"Inheriting  " LINK termcap-Inheriting}     Prev: @{"Capability_Format" LINK termcap-Capability_Format}     
  814. Terminal Type Name Conventions
  815. ==============================
  816. There are conventions for choosing names of terminal types.  For one
  817. thing, all letters should be in lower case.  The terminal type for a
  818. terminal in its most usual or most fundamental mode of operation
  819. should not have a hyphen in it.
  820. If the same terminal has other modes of operation which require
  821. different terminal descriptions, these variant descriptions are given
  822. names made by adding suffixes with hyphens.  Such alternate
  823. descriptions are used for two reasons:
  824.    * When the terminal has a switch that changes its behavior.  Since
  825.      the computer cannot tell how the switch is set, the user must
  826.      tell the computer by choosing the appropriate terminal type name.
  827.      For example, the VT-100 has a setup flag that controls whether
  828.      the cursor wraps at the right margin.  If this flag is set to
  829.      "wrap", you must use the terminal type `vt100-am'.  Otherwise
  830.      you must use `vt100-nam'.  Plain `vt100' is defined as a synonym
  831.      for either `vt100-am' or `vt100-nam' depending on the
  832.      preferences of the local site.
  833.      The standard suffix `-am' stands for "automatic margins".
  834.    * To give the user a choice in how to use the terminal.  This is
  835.      done when the terminal has a switch that the computer normally
  836.      controls.
  837.      For example, the Ann Arbor Ambassador can be configured with
  838.      many screen sizes ranging from 20 to 60 lines.  Fewer lines make
  839.      bigger characters but more lines let you see more of what you
  840.      are editing.  As a result, users have different preferences. 
  841.      Therefore, termcap provides terminal types for many screen
  842.      sizes.  If you choose type `aaa-30', the terminal will be
  843.      configured to use 30 lines; if you choose `aaa-48', 48 lines
  844.      will be used, and so on.
  845. Here is a list of standard suffixes and their conventional meanings:
  846.      Short for "wide".  This is a mode that gives the terminal more
  847.      columns than usual.  This is normally a user option.
  848. `-am'
  849.      "Automatic margins".  This is an alternate description for use
  850.      when the terminal's margin-wrap switch is on; it contains the
  851.      `am' flag.  The implication is that normally the switch is off
  852.      and the usual description for the terminal says that the switch
  853.      is off.
  854. `-nam'
  855.      "No automatic margins".  The opposite of `-am', this names an
  856.      alternative description which lacks the `am' flag.  This implies
  857.      that the terminal is normally operated with the margin-wrap
  858.      switch turned on, and the normal description of the terminal
  859.      says so.
  860. `-na'
  861.      "No arrows".  This terminal description initializes the terminal
  862.      to keep its arrow keys in local mode.  This is a user option.
  863. `-rv'
  864.      "Reverse video".  This terminal description causes text output
  865.      for normal video to appear as reverse, and text output for
  866.      reverse video to come out as normal.  Often this description
  867.      differs from the usual one by interchanging the two strings
  868.      which turn reverse video on and off.
  869.      This is a user option; you can choose either the "reverse video"
  870.      variant terminal type or the normal terminal type, and termcap
  871.      will obey.
  872.      "Status".  Says to enable use of a status line which ordinary
  873.      output does not touch (*note Status Line::.).
  874.      Some terminals have a special line that is used only as a status
  875.      line.  For these terminals, there is no need for an `-s'
  876.      variant; the status line commands should be defined by default. 
  877.      On other terminals, enabling a status line means removing one
  878.      screen line from ordinary use and reducing the effective screen
  879.      height.  For these terminals, the user can choose the `-s'
  880.      variant type to request use of a status line.
  881. `-NLINES'
  882.      Says to operate with NLINES lines on the screen, for terminals
  883.      such as the Ambassador which provide this as an option. 
  884.      Normally this is a user option; by choosing the terminal type,
  885.      you control how many lines termcap will use.
  886. `-NPAGESp'
  887.      Says that the terminal has NPAGES pages worth of screen memory,
  888.      for terminals where this is a hardware option.
  889. `-unk'
  890.      Says that description is not for direct use, but only for
  891.      reference in `tc' capabilities.  Such a description is a kind of
  892.      subroutine, because it describes the common characteristics of
  893.      several variant descriptions that would use other suffixes in
  894.      place of `-unk'.
  895. @endnode
  896. @node termcap-Inheriting "termcap-Inheriting"
  897. Up: @{"Data_Base   " LINK termcap-Data_Base}     Next: @{"Inheriting  " LINK termcap-Inheriting}     Prev: @{"Naming      " LINK termcap-Naming}     
  898. Inheriting from Related Descriptions
  899. ====================================
  900. When two terminal descriptions are similar, their identical parts do
  901. not need to be given twice.  Instead, one of the two can be defined
  902. in terms of the other, using the `tc' capability.  We say that one
  903. description "refers to" the other, or "inherits from" the other.
  904. The `tc' capability must be the last one in the terminal description,
  905. and its value is a string which is the name of another terminal type
  906. which is referred to.  For example,
  907.      N9|aaa|ambassador|aaa-30|ann arbor ambassador/30 lines:\
  908.              :ti=\E[2J\E[30;0;0;30p:\
  909.              :te=\E[60;0;0;30p\E[30;1H\E[J:\
  910.              :li#30:tc=aaa-unk:
  911. defines the terminal type `aaa-30' (also known as plain `aaa') in
  912. terms of `aaa-unk', which defines everything about the Ambassador
  913. that is independent of screen height.  The types `aaa-36', `aaa-48'
  914. and so on for other screen heights are likewise defined to inherit
  915. from `aaa-unk'.
  916. The capabilities overridden by `aaa-30' include `li', which says how
  917. many lines there are, and `ti' and `te', which configure the terminal
  918. to use that many lines.
  919. The effective terminal description for type `aaa' consists of the
  920. text shown above followed by the text of the description of
  921. `aaa-unk'.  The `tc' capability is handled automatically by
  922. `tgetent', which finds the description thus referenced and combines
  923. the two descriptions (*note Find::.).  Therefore, only the
  924. implementor of the terminal descriptions needs to think about using
  925. `tc'.  Users and application programmers do not need to be concerned
  926. with it.
  927. Since the reference terminal description is used last, capabilities
  928. specified in the referring description override any specifications of
  929. the same capabilities in the reference description.
  930. The referring description can cancel out a capability without
  931. specifying any new value for it by means of a special trick.  Write
  932. the capability in the referring description, with the character `@'
  933. after the capability name, as follows:
  934.      NZ|aaa-30-nam|ann arbor ambassador/30 lines/no automatic-margins:\
  935.              :am@:tc=aaa-30:
  936. @endnode
  937. @node main "termcap-2"
  938. Info file ../info/termcap, produced by Makeinfo, -*- Text -*- from
  939. input file termcap.texinfo.
  940. This file documents the termcap library of the GNU system.
  941. Copyright (C) 1988 Free Software Foundation, Inc.
  942. Permission is granted to make and distribute verbatim copies of this
  943. manual provided the copyright notice and this permission notice are
  944. preserved on all copies.
  945. Permission is granted to copy and distribute modified versions of
  946. this manual under the conditions for verbatim copying, provided that
  947. the entire resulting derived work is distributed under the terms of a
  948. permission notice identical to this one.
  949. Permission is granted to copy and distribute translations of this
  950. manual into another language, under the above conditions for modified
  951. versions, except that this permission notice may be stated in a
  952. translation approved by the Foundation.
  953. @endnode
  954. @node termcap-Capabilities "termcap-Capabilities"
  955. Up: @{"Top         " LINK termcap-Top}     Next: @{"Summary     " LINK termcap-Summary}     Prev: @{"Data_Base   " LINK termcap-Data_Base}     
  956. Definitions of the Terminal Capabilities
  957. ****************************************
  958. This section is divided into many subsections, each for one aspect of
  959. use of display terminals.  For writing a display program, you usually
  960. need only check the subsections for the operations you want to use. 
  961. For writing a terminal description, you must read each subsection and
  962. fill in the capabilities described there.
  963. String capabilities that are display commands may require numeric
  964. parameters (*note Parameters::.).  Most such capabilities do not use
  965. parameters.  When a capability requires parameters, this is
  966. explicitly stated at the beginning of its definition.  In simple
  967. cases, the first or second sentence of the definition mentions all
  968. the parameters, in the order they should be given, using a name
  969. in upper case
  970. for each one.  For example, the `rp' capability is a command that
  971. requires two parameters; its definition begins as follows:
  972.      String of commands to output a graphic character C, repeated N
  973.      times.
  974. In complex cases or when there are many parameters, they are
  975. described explicitly.
  976. When a capability is described as obsolete, this means that programs
  977. should not be written to look for it, but terminal descriptions
  978. should still be written to provide it.
  979. When a capability is described as very obsolete, this means that it
  980. should be omitted from terminal descriptions as well.
  981. * Menu:
  982.   @{"Basic" LINK termcap-Basic}               Basic characteristics.
  983.   @{"Screen_Size" LINK termcap-Screen_Size}         Screen size, and what happens when it changes.
  984.   @{"Cursor_Motion" LINK termcap-Cursor_Motion}       Various ways to move the cursor.
  985.   @{"Scrolling" LINK termcap-Scrolling}           Pushing text up and down on the screen.
  986.   @{"Wrapping" LINK termcap-Wrapping}            What happens if you write a character in the last column.
  987.   @{"Windows" LINK termcap-Windows}             Limiting the part of the window that output affects.
  988.   @{"Clearing" LINK termcap-Clearing}            Erasing one or many lines.
  989.   @{"Insdel_Line" LINK termcap-Insdel_Line}         Making new blank lines in mid-screen; deleting lines.
  990.   @{"Insdel_Char" LINK termcap-Insdel_Char}         Inserting and deleting characters within a line.
  991.   @{"Standout" LINK termcap-Standout}            Highlighting some of the text.
  992.   @{"Underlining" LINK termcap-Underlining}         Underlining some of the text.
  993.   @{"Cursor_Visibility" LINK termcap-Cursor_Visibility}   Making the cursor more or less easy to spot.
  994.   @{"Bell" LINK termcap-Bell}                Attracts user's attention; not localized on the screen.
  995.   @{"Keypad" LINK termcap-Keypad}              Recognizing when function keys or arrows are typed.
  996.   @{"Meta_Key" LINK termcap-Meta_Key}            META acts like an extra shift key.
  997.   @{"Initialization" LINK termcap-Initialization}      Commands used to initialize or reset the terminal.
  998.   @{"Pad_Specs" LINK termcap-Pad_Specs}           Info for the kernel on how much padding is needed.
  999.   @{"Status_Line" LINK termcap-Status_Line}         A status line displays "background" information.
  1000.   @{"Half-Line" LINK termcap-Half-Line}           Moving by half-lines, for superscripts and subscripts.
  1001.   @{"Printer" LINK termcap-Printer}             Controlling auxiliary printers of display terminals.
  1002. @endnode
  1003. @node termcap-Basic "termcap-Basic"
  1004. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Screen_Size " LINK termcap-Screen_Size}     Prev: @{"Capabilities" LINK termcap-Capabilities}     
  1005. Basic Characteristics
  1006. =====================
  1007. This section documents the capabilities that describe the basic and
  1008. nature of the terminal, and also those that are relevant to the
  1009. output of graphic characters.
  1010.      Flag whose presence means that the terminal can overstrike. 
  1011.      This means that outputting a graphic character does not erase
  1012.      whatever was present in the same character position before.  The
  1013.      terminals that can overstrike include printing terminals,
  1014.      storage tubes (all obsolete nowadays), and many bit-map displays.
  1015.      Flag whose presence means that outputting a space can erase an
  1016.      overstrike.  If this is not present and overstriking is
  1017.      supported, output of a space has no effect except to move the
  1018.      cursor.
  1019.      Flag whose presence means that this terminal type is a generic
  1020.      type which does not really describe any particular terminal. 
  1021.      Generic types are intended for use as the default type assigned
  1022.      when the user connects to the system, with the intention that
  1023.      the user should specify what type he really has.  One example of
  1024.      a generic type is the type `network'.
  1025.      Since the generic type cannot say how to do anything interesting
  1026.      with the terminal, termcap-using programs will always find that
  1027.      the terminal is too weak to be supported if the user has failed
  1028.      to specify a real terminal type in place of the generic one. 
  1029.      The `gn' flag directs these programs to use a different error
  1030.      message: "You have not specified your real terminal type",
  1031.      rather than "Your terminal is not powerful enough to be used".
  1032.      Flag whose presence means this is a hardcopy terminal.
  1033.      String of commands to output a graphic character C, repeated N
  1034.      times.  The first parameter value is the ASCII code for the
  1035.      desired character, and the second parameter is the number of
  1036.      times to repeat the character.  Often this command requires
  1037.      padding proportional to the  number of times the character is
  1038.      repeated.  This effect can be had by using parameter arithmetic
  1039.      with `%'-sequences to compute the amount of padding, then
  1040.      generating the result as a number at the front of the string so
  1041.      that `tputs' will treat it as padding.
  1042.      Flag whose presence means that the ASCII character `~' cannot be
  1043.      output on this terminal because it is used for display commands.
  1044.      Programs handle this flag by checking all text to be output and
  1045.      replacing each `~' with some other character(s).  If this is not
  1046.      done, the screen will be thoroughly garbled.
  1047.      The old Hazeltine terminals that required such treatment are
  1048.      probably very rare today, so you might as well not bother to
  1049.      support this flag.
  1050.      String whose presence means the terminal has a settable command
  1051.      character.  The value of the string is the default command
  1052.      character (which is usually ESC).
  1053.      All the strings of commands in the terminal description should
  1054.      be written to use the default command character.  If you are
  1055.      writing an application program that changes the command
  1056.      character, use the `CC' capability to figure out how to
  1057.      translate all the display commands to work with the new command
  1058.      character.
  1059.      Most programs have no reason to look at the `CC' capability.
  1060.      Flag whose presence identifies Superbee terminals which are
  1061.      unable to transmit the characters ESC and `Control-C'.  Programs
  1062.      which support this flag are supposed to check the input for the
  1063.      code sequences sent by the F1 and F2 keys, and pretend that ESC
  1064.      or `Control-C' (respectively) had been read.  But this flag is
  1065.      obsolete, and not worth supporting.
  1066. @endnode
  1067. @node termcap-Screen_Size "termcap-Screen_Size"
  1068. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Cursor_Motion" LINK termcap-Cursor_Motion}     Prev: @{"Basic       " LINK termcap-Basic}     
  1069. Screen Size
  1070. ===========
  1071. A terminal description has two capabilities, `co' and `li', that
  1072. describe the screen size in columns and lines.  But there is more to
  1073. the question of screen size than this.
  1074. On some operating systems the "screen" is really a window and the
  1075. effective width can vary.  On some of these systems, `tgetnum' uses
  1076. the actual width of the window to decide what value to return for the
  1077. `co' capability, overriding what is actually written in the terminal
  1078. description.  On other systems, it is up to the application program
  1079. to check the actual window width using a system call.  For example,
  1080. on BSD 4.3 systems, the system call `ioctl' with code `TIOCGWINSZ'
  1081. will tell you the current screen size.
  1082. On all window systems, termcap is powerless to advise the application
  1083. program if the user resizes the window.  Application programs must
  1084. deal with this possibility in a system-dependent fashion.  On some
  1085. systems the C shell handles part of the problem by detecting changes
  1086. in window size and setting the `TERMCAP' environment variable
  1087. appropriately.  This takes care of application programs that are
  1088. started subsequently.  It does not help application programs already
  1089. running.
  1090. On some systems, including BSD 4.3, all programs using a terminal get
  1091. a signal named `SIGWINCH' whenever the screen size changes.  Programs
  1092. that use termcap should handle this signal by using `ioctl
  1093. TIOCGWINSZ' to learn the new screen size.
  1094.      Numeric value, the width of the screen in character positions. 
  1095.      Even hardcopy terminals normally have a `co' capability.
  1096.      Numeric value, the height of the screen in lines.
  1097. @endnode
  1098. @node termcap-Cursor_Motion "termcap-Cursor_Motion"
  1099. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Wrapping    " LINK termcap-Wrapping}     Prev: @{"Screen_Size " LINK termcap-Screen_Size}     
  1100. Cursor Motion
  1101. =============
  1102. Termcap assumes that the terminal has a "cursor", a spot on the
  1103. screen where a visible mark is displayed, and that most display
  1104. commands take effect at the position of the cursor.  It follows that
  1105. moving the cursor to a specified location is very important.
  1106. There are many terminal capabilities for different cursor motion
  1107. operations.  A terminal description should define as many as
  1108. possible, but most programs do not need to use most of them.  One
  1109. capability, `cm', moves the cursor to an arbitrary place on the
  1110. screen; this by itself is sufficient for any application as long as
  1111. there is no need to support hardcopy terminals or certain old, weak
  1112. displays that have only relative motion commands.  Use of other
  1113. cursor motion capabilities is an optimization, enabling the program
  1114. to output fewer characters in some common cases.
  1115. If you plan to use the relative cursor motion commands in an
  1116. application program, you must know what the starting cursor position
  1117. is.  To do this, you must keep track of the cursor position and
  1118. update the records each time anything is output to the terminal,
  1119. including graphic characters.  In addition, it is necessary to know
  1120. whether the terminal wraps after writing in the rightmost column. 
  1121.   @{"Wrapping" LINK termcap-Wrapping}
  1122. One other motion capability needs special mention: `nw' moves the
  1123. cursor to the beginning of the following line, perhaps clearing all
  1124. the starting line after the cursor, or perhaps not clearing at all. 
  1125. This capability is a least common denominator that is probably
  1126. supported even by terminals that cannot do most other things such as
  1127. `cm' or `do'.  Even hardcopy terminals can support `nw'.
  1128.      String of commands to position the cursor at line L, column C. 
  1129.      Both parameters are origin-zero, and are defined relative to the
  1130.      screen, not relative to display memory.
  1131.      All display terminals except a few very obsolete ones support
  1132.      `cm', so it is acceptable for an application program to refuse
  1133.      to operate on terminals lacking `cm'.
  1134.      String of commands to move the cursor to the upper left corner
  1135.      of the screen (this position is called the "home position").  In
  1136.      terminals where the upper left corner of the screen is not the
  1137.      same as the beginning of display memory, this command must go to
  1138.      the upper left corner of the screen, not the beginning of
  1139.      display memory.
  1140.      Every display terminal supports this capability, and many
  1141.      application programs refuse to operate if the `ho' capability is
  1142.      missing.
  1143.      String of commands to move the cursor to the lower left corner
  1144.      of the screen.  On some terminals, moving up from home position
  1145.      does this, but programs should never assume that will work. 
  1146.      Just output the `ll' string (if it is provided); if moving to
  1147.      home position and then moving up is the best way to get there,
  1148.      the `ll' command will do that.
  1149.      String of commands to move the cursor to the beginning of the
  1150.      line it is on.  If this capability is not specified, many
  1151.      programs assume they can use the ASCII carriage return character
  1152.      for this.
  1153.      String of commands to move the cursor left one column.  Unless
  1154.      the `bw' flag capability is specified, the effect is undefined
  1155.      if the cursor is at the left margin; do not use this command
  1156.      there.  If `bw' is present, this command may be used at the left
  1157.      margin, and it wraps the cursor to the last column of the
  1158.      preceding line.
  1159.      String of commands to move the cursor right one column.  The
  1160.      effect is undefined if the cursor is at the right margin; do not
  1161.      use this command there, not even if `am' is present.
  1162.      String of commands to move the cursor vertically up one line. 
  1163.      The effect of sending this string when on the top line is
  1164.      undefined; programs should never use it that way.
  1165.      String of commands to move the cursor vertically down one line. 
  1166.      The effect of sending this string when on the bottom line is
  1167.      undefined; programs should never use it that way.
  1168.      The original idea was that this string would not contain a
  1169.      newline character and therefore could be used without disabling
  1170.      the kernel's usual habit of converting of newline into a
  1171.      carriage-return newline sequence.  But many terminal
  1172.      descriptions do use newline in the `do' string, so this is not
  1173.      possible; a program which sends the `do' string must disable
  1174.      output conversion in the kernel (*note Initialize::.).
  1175.      Flag whose presence says that `le' may be used in column zero to
  1176.      move to the last column of the preceding line.  If this flag is
  1177.      not present, `le' should not be used in column zero.
  1178.      String of commands to move the cursor to start of next line,
  1179.      possibly clearing rest of line (following the cursor) before
  1180.      moving.
  1181. `DO', `UP', `LE', `RI'
  1182.      Strings of commands to move the cursor N lines down vertically,
  1183.      up vertically, or N columns left or right.  Do not attempt to
  1184.      move past any edge of the screen with these commands; the effect
  1185.      of trying that is undefined.  Only a few terminal descriptions
  1186.      provide these commands, and most programs do not use them.
  1187.      String of commands to position the cursor at line L, column C,
  1188.      relative to display memory.  Both parameters are origin-zero. 
  1189.      This capability is present only in terminals where there is a
  1190.      difference between screen-relative and memory-relative
  1191.      addressing, and not even in all such terminals.
  1192.      String of commands to position the cursor at column C in the
  1193.      same line it is on.  This is a special case of `cm' in which the
  1194.      vertical position is not changed.  The `ch' capability is
  1195.      provided only when it is faster to output than `cm' would be in
  1196.      this special case.  Programs should not assume most display
  1197.      terminals have `ch'.
  1198.      String of commands to position the cursor at line L in the same
  1199.      column.  This is a special case of `cm' in which the horizontal
  1200.      position is not changed.  The `cv' capability is provided only
  1201.      when it is faster to output than `cm' would be in this special
  1202.      case.  Programs should not assume most display terminals have
  1203.      `cv'.
  1204.      String of commands to make the terminal save the current cursor
  1205.      position.  Only the last saved position can be used.  If this
  1206.      capability is present, `rc' should be provided also.  Most
  1207.      terminals have neither.
  1208.      String of commands to make the terminal restore the last saved
  1209.      cursor position.  If this capability is present, `sc' should be
  1210.      provided also.  Most terminals have neither.
  1211.      String of commands to advance to the next page, for a hardcopy
  1212.      terminal.
  1213.      String of commands to move the cursor right to the next hardware
  1214.      tab stop column.  Missing if the terminal does not have any kind
  1215.      of hardware tabs.  Do not send this command if the kernel's
  1216.      terminal modes say that the kernel is expanding tabs into spaces.
  1217.      String of commands to move the cursor left to the previous
  1218.      hardware tab stop column.  Missing if the terminal has no such
  1219.      ability; many terminals do not.  Do not send this command if the
  1220.      kernel's terminal modes say that the kernel is expanding tabs
  1221.      into spaces.
  1222. The following obsolete capabilities should be included in terminal
  1223. descriptions when appropriate, but should not be looked at by new
  1224. programs.
  1225.      Flag whose presence means the terminal does not support the
  1226.      ASCII carriage return character as `cr'.  This flag is needed
  1227.      because old programs assume, when the `cr' capability is
  1228.      missing, that ASCII carriage return can be used for the purpose.
  1229.      We use `nc' to tell the old programs that carriage return may
  1230.      not be used.
  1231.      New programs should not assume any default for `cr', so they
  1232.      need not look at `nc'.  However, descriptions should contain
  1233.      `nc' whenever they do not contain `cr'.
  1234.      Flag whose presence means that the ASCII tab character may not
  1235.      be used for cursor motion.  This flag exists because old
  1236.      programs assume, when the `ta' capability is missing, that ASCII
  1237.      tab can be used for the purpose.  We use `xt' to tell the old
  1238.      programs not to use tab.
  1239.      New programs should not assume any default for `ta', so they
  1240.      need not look at `xt' in connection with cursor motion.  Note
  1241.      that `xt' also has implications for standout mode (*note
  1242.      Standout::.).  It is obsolete in regard to cursor motion but not
  1243.      in regard to standout.
  1244.      In fact, `xt' means that the terminal is a Teleray 1061.
  1245.      Very obsolete alternative name for the `le' capability.
  1246.      Flag whose presence means that the ASCII character backspace may
  1247.      be used to move the cursor left.  Obsolete; look at `le' instead.
  1248.      Obsolete capability which is a string that can either be used to
  1249.      move the cursor down or to scroll.  The same string must scroll
  1250.      when used on the bottom line and move the cursor when used on
  1251.      any other line.  New programs should use `do' or `sf', and
  1252.      ignore `nl'.
  1253.      If there is no `nl' capability, some old programs assume they
  1254.      can use the newline character for this purpose.  These programs
  1255.      follow a bad practice, but because they exist, it is still
  1256.      desirable to define the `nl' capability in a terminal
  1257.      description if the best way to move down is *not* a newline.
  1258. @endnode
  1259. @node termcap-Wrapping "termcap-Wrapping"
  1260. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Scrolling   " LINK termcap-Scrolling}     Prev: @{"Cursor_Motion" LINK termcap-Cursor_Motion}     
  1261. Wrapping
  1262. ========
  1263. "Wrapping" means moving the cursor from the right margin to the left
  1264. margin of the following line.  Some terminals wrap automatically when
  1265. a graphic character is output in the last column, while others do
  1266. not.  Most application programs that use termcap need to know whether
  1267. the terminal wraps.  There are two special flag capabilities to
  1268. describe what the terminal does when a graphic character is output in
  1269. the last column.
  1270.      Flag whose presence means that writing a character in the last
  1271.      column causes the cursor to wrap to the beginning of the next
  1272.      line.
  1273.      If `am' is not present, writing in the last column leaves the
  1274.      cursor at the place where the character was written.
  1275.      Writing in the last column of the last line should be avoided on
  1276.      terminals with `am', as it may or may not cause scrolling to
  1277.      occur (*note Scrolling::.).  Scrolling is surely not what you
  1278.      would intend.
  1279.      If your program needs to check the `am' flag, then it also needs
  1280.      to check the `xn' flag which indicates that wrapping happens in
  1281.      a strange way.  Many common terminals have the `xn' flag.
  1282.      Flag whose presence means that the cursor wraps in a strange
  1283.      way.  At least two distinct kinds of strange behavior are known;
  1284.      the termcap data base does not contain anything to distinguish
  1285.      the two.
  1286.      On Concept-100 terminals, output in the last column wraps the
  1287.      cursor almost like an ordinary `am' terminal.  But if the next
  1288.      thing output is a newline, it is ignored.
  1289.      DEC VT-100 terminals (when the wrap switch is on) do a different
  1290.      strange thing: the cursor wraps only if the next thing output is
  1291.      another graphic character.  In fact, the wrap occurs when the
  1292.      following graphic character is received by the terminal, before
  1293.      the character is placed on the screen.
  1294.      On both of these terminals, after writing in the last column a
  1295.      following graphic character will be displayed in the first
  1296.      column of the following line.  But the effect of relative cursor
  1297.      motion characters such as newline or backspace at such a time
  1298.      depends on the terminal.  The effect of erase or scrolling
  1299.      commands also depends on the terminal.  You can't assume
  1300.      anything about what they will do on a terminal that has `xn'. 
  1301.      So, to be safe, you should never do these things at such a time
  1302.      on such a terminal.
  1303.      To be sure of reliable results on a terminal which has the `xn'
  1304.      flag, output a `cm' absolute positioning command after writing
  1305.      in the last column.  Another safe thing to do is to output
  1306.      carriage-return newline, which will leave the cursor at the
  1307.      beginning of the following line.
  1308. @endnode
  1309. @node termcap-Scrolling "termcap-Scrolling"
  1310. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Windows     " LINK termcap-Windows}     Prev: @{"Wrapping    " LINK termcap-Wrapping}     
  1311. Scrolling
  1312. =========
  1313. "Scrolling" means moving the contents of the screen up or down one or
  1314. more lines.  Moving the contents up is "forward scrolling"; moving
  1315. them down is "reverse scrolling".
  1316. Scrolling happens after each line of output during ordinary output on
  1317. most display terminals.  But in an application program that uses
  1318. termcap for random-access output, scrolling happens only when
  1319. explicitly requested with the commands in this section.
  1320. Some terminals have a "scroll region" feature.  This lets you limit
  1321. the effect of scrolling to a specified range of lines.  Lines outside
  1322. the range are unaffected when scrolling happens.  The scroll region
  1323. feature is available if either `cs' or `cS' is present.
  1324.      String of commands to scroll the screen one line up, assuming it
  1325.      is output with the cursor at the beginning of the bottom line.
  1326.      String of commands to scroll the screen one line down, assuming
  1327.      it is output with the cursor at the beginning of the top line.
  1328.      String of commands to scroll the screen N lines up, assuming it
  1329.      is output with the cursor at the beginning of the bottom line.
  1330.      String of commands to scroll the screen N line down, assuming it
  1331.      is output with the cursor at the beginning of the top line.
  1332.      String of commands to set the scroll region.  This command takes
  1333.      two parameters, START and END, which are the line numbers
  1334.      (origin-zero) of the first line to include in the scroll region
  1335.      and of the last line to include in it.  When a scroll region is
  1336.      set, scrolling is limited to the specified range of lines; lines
  1337.      outside the range are not affected by scroll commands.
  1338.      Do not try to move the cursor outside the scroll region.  The
  1339.      region remains set until explicitly removed.  To remove the
  1340.      scroll region, use another `cs' command specifying the full
  1341.      height of the screen.
  1342.      The cursor position is undefined after the `cs' command is set,
  1343.      so position the cursor with `cm' immediately afterward.
  1344.      String of commands to set the scroll region using parameters in
  1345.      different form.  The effect is the same as if `cs' were used. 
  1346.      Four parameters are required:
  1347.        1. Total number of lines on the screen.
  1348.        2. Number of lines above desired scroll region.
  1349.        3. Number of lines below (outside of) desired scroll region.
  1350.        4. Total number of lines on the screen, the same as the first
  1351.           parameter.
  1352.      This capability is a GNU extension that was invented to allow
  1353.      the Ann Arbor Ambassador's scroll-region command to be
  1354.      described; it could also be done by putting non-Unix
  1355.      `%'-sequences into a `cs' string, but that would have confused
  1356.      Unix programs that used the `cs' capability with the Unix
  1357.      termcap.  Currently only GNU Emacs uses the `cS' capability.
  1358.      Flag which means that the terminal does not normally scroll for
  1359.      ordinary sequential output.  For modern terminals, this means
  1360.      that outputting a newline in ordinary sequential output with the
  1361.      cursor on the bottom line wraps to the top line.  For some
  1362.      obsolete terminals, other things may happen.
  1363.      The terminal may be able to scroll even if it does not normally
  1364.      do so.  If the `sf' capability is provided, it can be used for
  1365.      scrolling regardless of `ns'.
  1366.      Flag whose presence means that lines scrolled up off the top of
  1367.      the screen may come back if scrolling down is done subsequently.
  1368.      The `da' and `db' flags do not, strictly speaking, affect how to
  1369.      scroll.  But programs that scroll usually need to clear the
  1370.      lines scrolled onto the screen, if these flags are present.
  1371.      Flag whose presence means that lines scrolled down off the
  1372.      bottom of the screen may come back if scrolling up is done
  1373.      subsequently.
  1374.      Numeric value, the number of lines of display memory that the
  1375.      terminal has.  A value of zero means that the terminal has more
  1376.      display memory than can fit on the screen, but no fixed number
  1377.      of lines.  (The number of lines may depend on the amount of text
  1378.      in each line.)
  1379. Any terminal description that defines `SF' should also define `sf';
  1380. likewise for `SR' and `sr'.  However, many terminals can only scroll
  1381. by one line at a time, so it is common to find `sf' and not `SF', or
  1382. `sr' without `SR'.
  1383. Therefore, all programs that use the scrolling facilities should be
  1384. prepared to work with `sf' in the case that `SF' is absent, and
  1385. likewise with `sr'.  On the other hand, an application program that
  1386. uses only `sf' and not `SF' is acceptable, though slow on some
  1387. terminals.
  1388. When outputting a scroll command with `tputs', the NLINES argument
  1389. should be the total number of lines in the portion of the screen
  1390. being scrolled.  Very often these commands require padding
  1391. proportional to this number of lines.    @{"Padding" LINK termcap-Padding}
  1392. @endnode
  1393. @node termcap-Windows "termcap-Windows"
  1394. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Clearing    " LINK termcap-Clearing}     Prev: @{"Scrolling   " LINK termcap-Scrolling}     
  1395. Windows
  1396. =======
  1397. A "window", in termcap, is a rectangular portion of the screen to
  1398. which all display operations are restricted.  Wrapping, clearing,
  1399. scrolling, insertion and deletion all operate as if the specified
  1400. window were all the screen there was.
  1401.      String of commands to set the terminal output screen window. 
  1402.      This string requires four parameters, all origin-zero:
  1403.        1. The first line to include in the window.
  1404.        2. The last line to include in the window.
  1405.        3. The first column to include in the window.
  1406.        4. The last column to include in the window.
  1407. Most terminals do not support windows.
  1408. @endnode
  1409. @node termcap-Clearing "termcap-Clearing"
  1410. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Insdel_Line " LINK termcap-Insdel_Line}     Prev: @{"Windows     " LINK termcap-Windows}     
  1411. Clearing Parts of the Screen
  1412. ============================
  1413. There are several terminal capabilities for clearing parts of the
  1414. screen to blank.  All display terminals support the `cl' string, and
  1415. most display terminals support all of these capabilities.
  1416.      String of commands to clear the entire screen and position the
  1417.      cursor at the upper left corner.
  1418.      String of commands to clear the line the cursor is on, and all
  1419.      the lines below it, down to the bottom of the screen.  This
  1420.      command string should be used only with the cursor in column
  1421.      zero; their effect is undefined if the cursor is elsewhere.
  1422.      String of commands to clear from the cursor to the end of the
  1423.      current line.
  1424.      String of commands to clear N characters, starting with the
  1425.      character that the cursor is on.  This command string is
  1426.      expected to leave the cursor position unchanged.  The parameter
  1427.      N should never be large enough to reach past the right margin;
  1428.      the effect of such a large parameter would be undefined.
  1429. Clear to end of line (`ce') is extremely important in programs that
  1430. maintain an updating display.  Nearly all display terminals support
  1431. this operation, so it is acceptable for a an application program to
  1432. refuse to work if `ce' is not present.  However, if you do not want
  1433. this limitation, you can accomplish clearing to end of line by
  1434. outputting spaces until you reach the right margin.  In order to do
  1435. this, you must know the current horizontal position.  Also, this
  1436. technique assumes that writing a space will erase.  But this happens
  1437. to be true on all the display terminals that fail to support `ce'.
  1438. @endnode
  1439. @node termcap-Insdel_Line "termcap-Insdel_Line"
  1440. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Insdel_Char " LINK termcap-Insdel_Char}     Prev: @{"Clearing    " LINK termcap-Clearing}     
  1441. Insert/Delete Line
  1442. ==================
  1443. "Inserting a line" means creating a blank line in the middle of the
  1444. screen, and pushing the existing lines of text apart.  In fact, the
  1445. lines above the insertion point do not change, while the lines below
  1446. move down, and one is normally lost at the bottom of the screen.
  1447. "Deleting a line" means causing the line to disappear from the
  1448. screen, closing up the gap by moving the lines below it upward.  A
  1449. new line appears at the bottom of the screen.  Usually this line is
  1450. blank, but on terminals with the `db' flag it may be a line
  1451. previously moved off the screen bottom by scrolling or line insertion.
  1452. Insertion and deletion of lines is useful in programs that maintain
  1453. an updating display some parts of which may get longer or shorter. 
  1454. They are also useful in editors for scrolling parts of the screen,
  1455. and for redisplaying after lines of text are killed or inserted.
  1456. Many terminals provide commands to insert or delete a single line at
  1457. the cursor position.  Some provide the ability to insert or delete
  1458. several lines with one command, using the number of lines to insert
  1459. or delete as a parameter.  Always move the cursor to column zero
  1460. before using any of these commands.
  1461.      String of commands to insert a blank line before the line the
  1462.      cursor is on.  The existing line, and all lines below it, are
  1463.      moved down.  The last line in the screen (or in the scroll
  1464.      region, if one is set) disappears and in most circumstances is
  1465.      discarded.  It may not be discarded if the `db' is present
  1466.      (*note Scrolling::.).
  1467.      The cursor must be at the left margin before this command is used.
  1468.      This command does not move the cursor.
  1469.      String of commands to delete the line the cursor is on.  The
  1470.      following lines move up, and a blank line appears at the bottom
  1471.      of the screen (or bottom of the scroll region).  If the terminal
  1472.      has the `db' flag, a nonblank line previously pushed off the
  1473.      screen bottom may reappear at the bottom.
  1474.      The cursor must be at the left margin before this command is used.
  1475.      This command does not move the cursor.
  1476.      String of commands to insert N blank lines before the line that
  1477.      the cursor is on.  It is like `al' repeated N times, except that
  1478.      it is as fast as one `al'.
  1479.      String of commands to delete N lines starting with the line that
  1480.      the cursor is on.  It is like `dl' repeated N times, except that
  1481.      it is as fast as one `dl'.
  1482. Any terminal description that defines `AL' should also define `al';
  1483. likewise for `DL' and `dl'.  However, many terminals can only insert
  1484. or delete one line at a time, so it is common to find `al' and not
  1485. `AL', or `dl' without `DL'.
  1486. Therefore, all programs that use the insert and delete facilities
  1487. should be prepared to work with `al' in the case that `AL' is absent,
  1488. and likewise with `dl'.  On the other hand, it is acceptable to write
  1489. an application that uses only `al' and `dl' and does not look for
  1490. `AL' or `DL' at all.
  1491. If a terminal does not support line insertion and deletion directly,
  1492. but does support a scroll region, the effect of insertion and
  1493. deletion can be obtained with scrolling.  However, it is up to the
  1494. individual user program to check for this possibility and use the
  1495. scrolling commands to get the desired result.  It is fairly important
  1496. to implement this alternate strategy, since it is the only way to get
  1497. the effect of line insertion and deletion on the popular VT100
  1498. terminal.
  1499. Insertion and deletion of lines is affected by the scroll region on
  1500. terminals that have a settable scroll region.  This is useful when it
  1501. is desirable to move any few consecutive lines up or down by a few
  1502. lines.    @{"Scrolling" LINK termcap-Scrolling}
  1503. The line pushed off the bottom of the screen is not lost if the
  1504. terminal has the `db' flag capability; instead, it is pushed into
  1505. display memory that does not appear on the screen.  This is the same
  1506. thing that happens when scrolling pushes a line off the bottom of the
  1507. screen.  Either reverse scrolling or deletion of a line can bring the
  1508. apparently lost line back onto the bottom of the screen.  If the
  1509. terminal has the scroll region feature as well as `db', the
  1510. pushed-out line really is lost if a scroll region is in effect.
  1511. When outputting an insert or delete command with `tputs', the NLINES
  1512. argument should be the total number of lines from the cursor to the
  1513. bottom of the screen (or scroll region).  Very often these commands
  1514. require padding proportional to this number of lines.    @{"Padding" LINK termcap-Padding}
  1515. For `AL' and `DL' the NLINES argument should *not* depend on the
  1516. number of lines inserted or deleted; only the total number of lines
  1517. affected.  This is because it is just as fast to insert two or N
  1518. lines with `AL' as to insert one line with `al'.
  1519. @endnode
  1520. @node termcap-Insdel_Char "termcap-Insdel_Char"
  1521. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Standout    " LINK termcap-Standout}     Prev: @{"Insdel_Line " LINK termcap-Insdel_Line}     
  1522. Insert/Delete Character
  1523. =======================
  1524. "Inserting a character" means creating a blank space in the middle of
  1525. a line, and pushing the rest of the line rightward.  The character in
  1526. the rightmost column is lost.
  1527. "Deleting a character" means causing the character to disappear from
  1528. the screen, closing up the gap by moving the rest of the line
  1529. leftward.  A blank space appears in the rightmost column.
  1530. Insertion and deletion of characters is useful in programs that
  1531. maintain an updating display some parts of which may get longer or
  1532. shorter.  It is also useful in editors for redisplaying the results
  1533. of editing within a line.
  1534. Many terminals provide commands to insert or delete a single
  1535. character at the cursor position.  Some provide the ability to insert
  1536. or delete several characters with one command, using the number of
  1537. characters to insert or delete as a parameter.
  1538. Many terminals provide an insert mode in which outputting a graphic
  1539. character has the added effect of inserting a position for that
  1540. character.  A special command string is used to enter insert mode and
  1541. another is used to exit it.  The reason for designing a terminal with
  1542. an insert mode rather than an insert command is that inserting
  1543. character positions is usually followed by writing characters into
  1544. them.  With insert mode, this is as fast as simply writing the
  1545. characters, except for the fixed overhead of entering and leaving
  1546. insert mode.  However, when the line speed is great enough, padding
  1547. may be required for the graphic characters output in insert mode.
  1548. Some terminals require you to enter insert mode and then output a
  1549. special command for each position to be inserted.  Or they may
  1550. require special commands to be output before or after each graphic
  1551. character to be inserted.
  1552. Deletion of characters is usually accomplished by a straightforward
  1553. command to delete one or several positions; but on some terminals, it
  1554. is necessary to enter a special delete mode before using the delete
  1555. command, and leave delete mode afterward.  Sometimes delete mode and
  1556. insert mode are the same mode.
  1557. Some terminals make a distinction between character positions in
  1558. which a space character has been output and positions which have been
  1559. cleared.  On these terminals, the effect of insert or delete
  1560. character runs to the first cleared position rather than to the end
  1561. of the line.  In fact, the effect may run to more than one line if
  1562. there is no cleared position to stop the shift on the first line. 
  1563. These terminals are identified by the `in' flag capability.
  1564. On terminals with the `in' flag, the technique of skipping over
  1565. characters that you know were cleared, and then outputting text later
  1566. on in the same line, causes later insert and delete character
  1567. operations on that line to do nonstandard things.  A program that has
  1568. any chance of doing this must check for the `in' flag and must be
  1569. careful to write explicit space characters into the intermediate
  1570. columns when `in' is present.
  1571. A plethora of terminal capabilities are needed to describe all of
  1572. this complexity.  Here is a list of them all.  Following the list, we
  1573. present an algorithm for programs to use to take proper account of
  1574. all of these capabilities.
  1575.      String of commands to enter insert mode.
  1576.      If the terminal has no special insert mode, but it can insert
  1577.      characters with a special command, `im' should be defined with a
  1578.      null value, because the `vi' editor assumes that insertion of a
  1579.      character is impossible if `im' is not provided.
  1580.      New programs should not act like `vi'.  They should pay
  1581.      attention to `im' only if it is defined.
  1582.      String of commands to leave insert mode.  This capability must
  1583.      be present if `im' is.
  1584.      On a few old terminals the same string is used to enter and exit
  1585.      insert mode.  This string turns insert mode on if it was off,
  1586.      and off it it was on.  You can tell these terminals because the
  1587.      `ei' string equals the `im' string.  If you want to support
  1588.      these terminals, you must always remember accurately whether
  1589.      insert mode is in effect.  However, these terminals are
  1590.      obsolete, and it is reasonable to refuse to support them.  On
  1591.      all modern terminals, you can safely output `ei' at any time to
  1592.      ensure that insert mode is turned off.
  1593.      String of commands to insert one character position at the cursor.
  1594.      The cursor does not move.
  1595.      If outputting a graphic character while in insert mode is
  1596.      sufficient to insert the character, then the `ic' capability
  1597.      should be defined with a null value.
  1598.      If your terminal offers a choice of ways to insert--either use
  1599.      insert mode or use a special command--then define `im' and do
  1600.      not define `ic', since this gives the most efficient operation
  1601.      when several characters are to be inserted.  *Do not* define
  1602.      both strings, for that means that *both* must be used each time
  1603.      insertion is done.
  1604.      String of commands to output following an inserted graphic
  1605.      character in insert mode.  Often it is used just for a padding
  1606.      spec, when padding is needed after an inserted character (*note
  1607.      Padding::.).
  1608.      String of commands to insert N character positions at and after
  1609.      the cursor.  It has the same effect as repeating the `ic' string
  1610.      and a space, N times.
  1611.      If `IC' is provided, application programs may use it without
  1612.      first entering insert mode.
  1613.      Flag whose presence means it is safe to move the cursor while in
  1614.      insert mode and assume the terminal remains in insert mode.
  1615.      Flag whose presence means that the terminal distinguishes
  1616.      between character positions in which space characters have been
  1617.      output and positions which have been cleared.
  1618. An application program can assume that the terminal can do character
  1619. insertion if *any one of* the capabilities `IC', `im', `ic' or `ip'
  1620. is provided.
  1621. To insert N blank character positions, move the cursor to the place
  1622. to insert them and follow this algorithm:
  1623.   1. If an `IC' string is provided, output it with parameter N and
  1624.      you are finished.  Otherwise (or if you don't want to bother to
  1625.      look for an `IC' string) follow the remaining steps.
  1626.   2. Output the `im' string, if there is one, unless the terminal is
  1627.      already in insert mode.
  1628.   3. Repeat steps 4 through 6, N times.
  1629.   4. Output the `ic' string if any.
  1630.   5. Output a space.
  1631.   6. Output the `ip' string if any.
  1632.   7. Output the `ei' string, eventually, to exit insert mode.  There
  1633.      is no need to do this right away.  If the `mi' flag is present,
  1634.      you can move the cursor and the cursor will remain in insert
  1635.      mode; then you can do more insertion elsewhere without
  1636.      reentering insert mode.
  1637. To insert N graphic characters, position the cursor and follow this
  1638. algorithm:
  1639.   1. If an `IC' string is provided, output it with parameter N, then
  1640.      output the graphic characters, and you are finished.  Otherwise
  1641.      (or if you don't want to bother to look for an `IC' string)
  1642.      follow the remaining steps.
  1643.   2. Output the `im' string, if there is one, unless the terminal is
  1644.      already in insert mode.
  1645.   3. For each character to be output, repeat steps 4 through 6.
  1646.   4. Output the `ic' string if any.
  1647.   5. Output the next graphic character.
  1648.   6. Output the `ip' string if any.
  1649.   7. Output the `ei' string, eventually, to exit insert mode.  There
  1650.      is no need to do this right away.  If the `mi' flag is present,
  1651.      you can move the cursor and the cursor will remain in insert
  1652.      mode; then you can do more insertion elsewhere without
  1653.      reentering insert mode.
  1654. Note that this is not the same as the original Unix termcap
  1655. specifications in one respect: it assumes that the `IC' string can be
  1656. used without entering insert mode.  This is true as far as I know,
  1657. and it allows you be able to avoid entering and leaving insert mode,
  1658. and also to be able to avoid the inserted-character padding after the
  1659. characters that go into the inserted positions.
  1660. Deletion of characters is less complicated; deleting one column is
  1661. done by outputting the `dc' string.  However, there may be a delete
  1662. mode that must be entered with `dm' in order to make `dc' work.
  1663.      String of commands to delete one character position at the
  1664.      cursor.  If `dc' is not present, the terminal cannot delete
  1665.      characters.
  1666.      String of commands to delete N characters starting at the cursor.
  1667.      It has the same effect as repeating the `dc' string N times. 
  1668.      Any terminal description that has `DC' also has `dc'.
  1669.      String of commands to enter delete mode.  If not present, there
  1670.      is no delete mode, and `dc' can be used at any time (assuming
  1671.      there is a `dc').
  1672.      String of commands to exit delete mode.  This must be present if
  1673.      `dm' is.
  1674. To delete N character positions, position the cursor and follow these
  1675. steps:
  1676.   1. If the `DC' string is present, output it with parameter N and
  1677.      you are finished.  Otherwise, follow the remaining steps.
  1678.   2. Output the `dm' string, unless you know the terminal is already
  1679.      in delete mode.
  1680.   3. Output the `dc' string N times.
  1681.   4. Output the `ed' string eventually.  If the flag capability `mi'
  1682.      is present, you can move the cursor and do more deletion without
  1683.      leaving and reentering delete mode.
  1684. As with the `IC' string, we have departed from the original termcap
  1685. specifications by assuming that `DC' works without entering delete
  1686. mode even though `dc' would not.
  1687. If the `dm' and `im' capabilities are both present and have the same
  1688. value, it means that the terminal has one mode for both insertion and
  1689. deletion.  It is useful for a program to know this, because then it
  1690. can do insertions after deletions, or vice versa, without leaving
  1691. insert/delete mode and reentering it.
  1692. @endnode
  1693. @node main "termcap-3"
  1694. Info file ../info/termcap, produced by Makeinfo, -*- Text -*- from
  1695. input file termcap.texinfo.
  1696. This file documents the termcap library of the GNU system.
  1697. Copyright (C) 1988 Free Software Foundation, Inc.
  1698. Permission is granted to make and distribute verbatim copies of this
  1699. manual provided the copyright notice and this permission notice are
  1700. preserved on all copies.
  1701. Permission is granted to copy and distribute modified versions of
  1702. this manual under the conditions for verbatim copying, provided that
  1703. the entire resulting derived work is distributed under the terms of a
  1704. permission notice identical to this one.
  1705. Permission is granted to copy and distribute translations of this
  1706. manual into another language, under the above conditions for modified
  1707. versions, except that this permission notice may be stated in a
  1708. translation approved by the Foundation.
  1709. @endnode
  1710. @node termcap-Standout "termcap-Standout"
  1711. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Underlining " LINK termcap-Underlining}     Prev: @{"Insdel_Char " LINK termcap-Insdel_Char}     
  1712. Standout and Appearance Modes
  1713. =============================
  1714. "Appearance modes" are modifications to the ways characters are
  1715. displayed.  Typical appearance modes include reverse video, dim,
  1716. bright, blinking, underlined, invisible, and alternate character set.
  1717. Each kind of terminal supports various among these, or perhaps none.
  1718. For each type of terminal, one appearance mode or combination of them
  1719. that looks good for highlighted text is chosen as the "standout
  1720. mode".  The capabilities `so' and `se' say how to enter and leave
  1721. standout mode.  Programs that use appearance modes only to highlight
  1722. some text generally use the standout mode so that they can work on as
  1723. many terminals as possible.  Use of specific appearance modes other
  1724. than "underlined" and "alternate character set" is rare.
  1725. Terminals that implement appearance modes fall into two general
  1726. classes as to how they do it.
  1727. In some terminals, the presence or absence of any appearance mode is
  1728. recorded separately for each character position.  In these terminals,
  1729. each graphic character written is given the appearance modes current
  1730. at the time it is written, and keeps those modes until it is erased
  1731. or overwritten.  There are special commands to turn the appearance
  1732. modes on or off for characters to be written in the future.
  1733. In other terminals, the change of appearance modes is represented by
  1734. a marker that belongs to a certain screen position but affects all
  1735. following screen positions until the next marker.  These markers are
  1736. traditionally called "magic cookies".
  1737. The same capabilities (`so', `se', `mb' and so on) for turning
  1738. appearance modes on and off are used for both magic-cookie terminals
  1739. and per-character terminals.  On magic cookie terminals, these give
  1740. the commands to write the magic cookies.  On per-character terminals,
  1741. they change the current modes that affect future output and erasure. 
  1742. Some simple applications can use these commands without knowing
  1743. whether or not they work by means of cookies.
  1744. However, a program that maintains and updates a display needs to know
  1745. whether the terminal uses magic cookies, and exactly what their
  1746. effect is.  This information comes from the `sg' capability.
  1747. The `sg' capability is a numeric capability whose presence indicates
  1748. that the terminal uses magic cookies for appearance modes.  Its value
  1749. is the number of character positions that a magic cookie occupies. 
  1750. Usually the cookie occupies one or more character positions on the
  1751. screen, and these character positions are displayed as blank, but in
  1752. some terminals the cookie has zero width.
  1753. The `sg' capability describes both the magic cookie to turn standout
  1754. on and the cookie to turn it off.  This makes the assumption that
  1755. both kinds of cookie have the same width on the screen.  If that is
  1756. not true, the narrower cookie must be "widened" with spaces until it
  1757. has the same width as the other.
  1758. On some magic cookie terminals, each line always starts with normal
  1759. display; in other words, the scope of a magic cookie never extends
  1760. over more than one line.  But on other terminals, one magic cookie
  1761. affects all the lines below it unless explicitly canceled.  Termcap
  1762. does not define any way to distinguish these two ways magic cookies
  1763. can work.  To be safe, it is best to put a cookie at the beginning of
  1764. each line.
  1765. On some per-character terminals, standout mode or other appearance
  1766. modes may be canceled by moving the cursor.  On others, moving the
  1767. cursor has no effect on the state of the appearance modes.  The
  1768. latter class of terminals are given the flag capability `ms' ("can
  1769. move in standout").  All programs that might have occasion to move
  1770. the cursor while appearance modes are turned on must check for this
  1771. flag; if it is not present, they should reset appearance modes to
  1772. normal before doing cursor motion.
  1773. A program that has turned on only standout mode should use `se' to
  1774. reset the standout mode to normal.  A program that has turned on only
  1775. alternate character set mode should use `ae' to return it to normal. 
  1776. If it is possible that any other appearance modes are turned on, use
  1777. the `me' capability to return them to normal.
  1778. Note that the commands to turn on one appearance mode, including `so'
  1779. and `mb' ... `mr', if used while some other appearance modes are
  1780. turned on, may combine the two modes on some terminals but may turn
  1781. off the mode previously enabled on other terminals.  This is because
  1782. some terminals do not have a command to set or clear one appearance
  1783. mode without changing the others.  Programs should not attempt to use
  1784. appearance modes in combination except with `sa', and when switching
  1785. from one single mode to another should always turn off the previously
  1786. enabled mode and then turn on the new desired mode.
  1787. On some old terminals, the `so' and `se' commands may be the same
  1788. command, which has the effect of turning standout on if it is off, or
  1789. off it is on.  It is therefore risky for a program to output extra
  1790. `se' commands for good measure.  Fortunately, all these terminals are
  1791. obsolete.
  1792. Programs that update displays in which standout-text may be replaced
  1793. with non-standout text must check for the `xs' flag.  In a
  1794. per-character terminal, this flag says that the only way to remove
  1795. standout once written is to clear that portion of the line with the
  1796. `ce' string or something even more powerful (*note Clearing::.); just
  1797. writing new characters at those screen positions will not change the
  1798. modes in effect there.  In a magic cookie terminal, `xs' says that
  1799. the only way to remove a cookie is to clear a portion of the line
  1800. that includes the cookie; writing a different cookie at the same
  1801. position does not work.
  1802. Such programs must also check for the `xt' flag, which means that the
  1803. terminal is a Teleray 1061.  On this terminal it is impossible to
  1804. position the cursor at the front of a magic cookie, so the only two
  1805. ways to remove a cookie are (1) to delete the line it is on or (2) to
  1806. position the cursor at least one character before it (possibly on a
  1807. previous line) and output the `se' string, which on these terminals
  1808. finds and removes the next `so' magic cookie on the screen.  (It may
  1809. also be possible to remove a cookie which is not at the beginning of
  1810. a line by clearing that line.)  The `xt' capability also has
  1811. implications for the use of tab characters, but in that regard it is
  1812. obsolete (  @{"Cursor Motion" LINK termcap-Cursor Motion}.
  1813.      String of commands to enter standout mode.
  1814.      String of commands to leave standout mode.
  1815.      Numeric capability, the width on the screen of the magic cookie.
  1816.      This capability is absent in terminals that record appearance
  1817.      modes character by character.
  1818.      Flag whose presence means that it is safe to move the cursor
  1819.      while the appearance modes are not in the normal state.  If this
  1820.      flag is absent, programs should always reset the appearance
  1821.      modes to normal before moving the cursor.
  1822.      Flag whose presence means that the only way to reset appearance
  1823.      modes already on the screen is to clear to end of line.  On a
  1824.      per-character terminal, you must clear the area where the modes
  1825.      are set.  On a magic cookie terminal, you must clear an area
  1826.      containing the cookie.  See the discussion above.
  1827.      Flag whose presence means that the cursor cannot be positioned
  1828.      right in front of a magic cookie, and that `se' is a command to
  1829.      delete the next magic cookie following the cursor.  See
  1830.      discussion above.
  1831.      String of commands to enter blinking mode.
  1832.      String of commands to enter double-bright mode.
  1833.      String of commands to enter half-bright mode.
  1834.      String of commands to enter invisible mode.
  1835.      String of commands to enter protected mode.
  1836.      String of commands to enter reverse-video mode.
  1837.      String of commands to turn off all appearance modes, including
  1838.      standout mode and underline mode.  On some terminals it also
  1839.      turns off alternate character set mode; on others, it may not. 
  1840.      This capability must be present if any of `mb' ... `mr' is
  1841.      present.
  1842.      String of commands to turn on alternate character set mode. 
  1843.      This mode assigns some or all graphic characters an alternate
  1844.      picture on the screen.  There is no standard as to what the
  1845.      alternate pictures look like.
  1846.      String of commands to turn off alternate character set mode.
  1847.      String of commands to turn on an arbitrary combination of
  1848.      appearance modes.  It accepts 9 parameters, each of which
  1849.      controls a particular kind of appearance mode.  A parameter
  1850.      should be 1 to turn its appearance mode on, or zero to turn that
  1851.      mode off.  Most terminals do not support the `sa' capability,
  1852.      even among those that do have various appearance modes.
  1853.      The nine parameters are, in order, STANDOUT, UNDERLINE, REVERSE,
  1854.      BLINK, HALF-BRIGHT, DOUBLE-BRIGHT, BLANK, PROTECT, ALT CHAR SET.
  1855. @endnode
  1856. @node termcap-Underlining "termcap-Underlining"
  1857. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Cursor_Visibility" LINK termcap-Cursor_Visibility}     Prev: @{"Standout    " LINK termcap-Standout}     
  1858. Underlining
  1859. ===========
  1860. Underlining on most terminals is a kind of appearance mode, much like
  1861. standout mode.  Therefore, it may be implemented using magic cookies
  1862. or as a flag in the terminal whose current state affects each
  1863. character that is output.    @{"Standout" LINK termcap-Standout} for a full explanation.
  1864. The `ug' capability is a numeric capability whose presence indicates
  1865. that the terminal uses magic cookies for underlining.  Its value is
  1866. the number of character positions that a magic cookie for underlining
  1867. occupies; it is used for underlining just as `sg' is used for
  1868. standout.  Aside from the simplest applications, it is impossible to
  1869. use underlining correctly without paying attention to the value of
  1870. `ug'.
  1871.      String of commands to turn on underline mode or to output a
  1872.      magic cookie to start underlining.
  1873.      String of commands to turn off underline mode or to output a
  1874.      magic cookie to stop underlining.
  1875.      Width of magic cookie that represents a change of underline
  1876.      mode; or missing, if the terminal does not use a magic cookie
  1877.      for this.
  1878.      Flag whose presence means that it is safe to move the cursor
  1879.      while the appearance modes are not in the normal state. 
  1880.      Underlining is an appearance mode.  If this flag is absent,
  1881.      programs should always turn off underlining before moving the
  1882.      cursor.
  1883. There are two other, older ways of doing underlining: there can be a
  1884. command to underline a single character, or the output of `_', the
  1885. ASCII underscore character, as an overstrike could cause a character
  1886. to be underlined.  New programs need not bother to handle these
  1887. capabilities unless the author cares strongly about the obscure
  1888. terminals which support them.  However, terminal descriptions should
  1889. provide these capabilities when appropriate.
  1890.      String of commands to underline the character under the cursor,
  1891.      and move the cursor right.
  1892.      Flag whose presence means that the terminal can underline by
  1893.      overstriking an underscore character (`_'); some terminals can
  1894.      do this even though they do not support overstriking in general.
  1895.      An implication of this flag is that when outputting new text to
  1896.      overwrite old text, underscore characters must be treated
  1897.      specially lest they underline the old text instead.
  1898. @endnode
  1899. @node termcap-Cursor_Visibility "termcap-Cursor_Visibility"
  1900. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Bell        " LINK termcap-Bell}     Prev: @{"Underlining " LINK termcap-Underlining}     
  1901. Cursor Visibility
  1902. =================
  1903. Some terminals have the ability to make the cursor invisible, or to
  1904. enhance it.  Enhancing the cursor is often done by programs that plan
  1905. to use the cursor to indicate to the user a position of interest that
  1906. may be anywhere on the screen--for example, the Emacs editor enhances
  1907. the cursor on entry.  Such programs should always restore the cursor
  1908. to normal on exit.
  1909.      String of commands to enhance the cursor.
  1910.      String of commands to make the cursor invisible.
  1911.      String of commands to return the cursor to normal.
  1912. If you define either `vs' or `vi', you must also define `ve'.
  1913. @endnode
  1914. @node termcap-Bell "termcap-Bell"
  1915. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Keypad      " LINK termcap-Keypad}     Prev: @{"Cursor_Visibility" LINK termcap-Cursor_Visibility}     
  1916. Here we describe commands to make the terminal ask for the user to
  1917. pay attention to it.
  1918.      String of commands to cause the terminal to make an audible
  1919.      sound.  If this capability is absent, the terminal has no way to
  1920.      make a suitable sound.
  1921.      String of commands to cause the screen to flash to attract
  1922.      attention ("visible bell").  If this capability is absent, the
  1923.      terminal has no way to do such a thing.
  1924. @endnode
  1925. @node termcap-Keypad "termcap-Keypad"
  1926. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Meta_Key    " LINK termcap-Meta_Key}     Prev: @{"Bell        " LINK termcap-Bell}     
  1927. Keypad and Function Keys
  1928. ========================
  1929. Many terminals have arrow and function keys that transmit specific
  1930. character sequences to the computer.  Since the precise sequences
  1931. used depend on the terminal, termcap defines capabilities used to say
  1932. what the sequences are.  Unlike most termcap string-valued
  1933. capabilities, these are not strings of commands to be sent to the
  1934. terminal, rather strings that are received from the terminal.
  1935. Programs that expect to use keypad keys should check, initially, for
  1936. a `ks' capability and send it, to make the keypad actually transmit. 
  1937. Such programs should also send the `ke' string when exiting.
  1938.      String of commands to make the function keys transmit.  If this
  1939.      capability is not provided, but the others in this section are,
  1940.      programs may assume that the function keys always transmit.
  1941.      String of commands to make the function keys work locally.  This
  1942.      capability is provided only if `ks' is.
  1943.      String of input characters sent by typing the left-arrow key. 
  1944.      If this capability is missing, you cannot expect the terminal to
  1945.      have a left-arrow key that transmits anything to the computer.
  1946.      String of input characters sent by typing the right-arrow key.
  1947.      String of input characters sent by typing the up-arrow key.
  1948.      String of input characters sent by typing the down-arrow key.
  1949.      String of input characters sent by typing the "home-position" key.
  1950. `K1' ... `K5'
  1951.      Strings of input characters sent by the five other keys in a
  1952.      3-by-3 array that includes the arrow keys, if the keyboard has
  1953.      such a 3-by-3 array.  Note that one of these keys may be the
  1954.      "home-position" key, in which case one of these capabilities
  1955.      will have the same value as the `kh' key.
  1956.      String of input characters sent by function key 10 (or 0, if the
  1957.      terminal has one labeled 0).
  1958. `k1' ... `k9'
  1959.      Strings of input characters sent by function keys 1 through 9,
  1960.      provided for those function keys that exist.
  1961.      Number: the number of numbered function keys, if there are more
  1962.      than 10.
  1963. `l0' ... `l9'
  1964.      Strings which are the labels appearing on the keyboard on the
  1965.      keys described by the capabilities `k0' ... `l9'.  These
  1966.      capabilities should be left undefined if the labels are `f0' or
  1967.      `f10' and `f1' ... `f9'.
  1968.      String of input characters sent by the "home down" key, if there
  1969.      is one.
  1970.      String of input characters sent by the "backspace" key, if there
  1971.      is one.
  1972.      String of input characters sent by the "clear all tabs" key, if
  1973.      there is one.
  1974.      String of input characters sent by the "clear tab stop this
  1975.      column" key, if there is one.
  1976.      String of input characters sent by the "clear screen" key, if
  1977.      there is one.
  1978.      String of input characters sent by the "delete character" key,
  1979.      if there is one.
  1980.      String of input characters sent by the "delete line" key, if
  1981.      there is one.
  1982.      String of input characters sent by the "exit insert mode" key,
  1983.      if there is one.
  1984.      String of input characters sent by the "clear to end of line"
  1985.      key, if there is one.
  1986.      String of input characters sent by the "clear to end of screen"
  1987.      key, if there is one.
  1988.      String of input characters sent by the "insert character" or
  1989.      "enter insert mode" key, if there is one.
  1990.      String of input characters sent by the "insert line" key, if
  1991.      there is one.
  1992.      String of input characters sent by the "next page" key, if there
  1993.      is one.
  1994.      String of input characters sent by the "previous page" key, if
  1995.      there is one.
  1996.      String of input characters sent by the "scroll forward" key, if
  1997.      there is one.
  1998.      String of input characters sent by the "scroll reverse" key, if
  1999.      there is one.
  2000.      String of input characters sent by the "set tab stop in this
  2001.      column" key, if there is one.
  2002.      String listing the other function keys the terminal has.  This
  2003.      is a very obsolete way of describing the same information found
  2004.      in the `kH' ... `kT' keys.  The string contains a list of
  2005.      two-character termcap capability names, separated by commas. 
  2006.      The meaning is that for each capability name listed, the
  2007.      terminal has a key which sends the string which is the value of
  2008.      that capability.  For example, the value `:ko=cl,ll,sf,sr:' says
  2009.      that the terminal has four function keys which mean "clear
  2010.      screen", "home down", "scroll forward" and "scroll reverse".
  2011. @endnode
  2012. @node termcap-Meta_Key "termcap-Meta_Key"
  2013. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Initialization" LINK termcap-Initialization}     Prev: @{"Keypad      " LINK termcap-Keypad}     
  2014. Meta Key
  2015. ========
  2016. A Meta key is a key on the keyboard that modifies each character you
  2017. type by controlling the 0200 bit.  This bit is on if and only if the
  2018. Meta key is held down when the character is typed.  Characters typed
  2019. using the Meta key are called Meta characters.  Emacs uses Meta
  2020. characters as editing commands.
  2021.      Flag whose presence means that the terminal has a Meta key.
  2022.      String of commands to enable the functioning of the Meta key.
  2023.      String of commands to disable the functioning of the Meta key.
  2024. If the terminal has `km' but does not have `mm' and `mo', it means
  2025. that the Meta key always functions.  If it has `mm' and `mo', it
  2026. means that the Meta key can be turned on or off.  Send the `mm'
  2027. string to turn it on, and the `mo' string to turn it off.  I do not
  2028. know why one would ever not want it to be on.
  2029. @endnode
  2030. @node termcap-Initialization "termcap-Initialization"
  2031. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Pad_Specs   " LINK termcap-Pad_Specs}     Prev: @{"Meta_Key    " LINK termcap-Meta_Key}     
  2032. Initialization
  2033. ==============
  2034.      String of commands to put the terminal into whatever special
  2035.      modes are needed or appropriate for programs that move the
  2036.      cursor nonsequentially around the screen.  Programs that use
  2037.      termcap to do full-screen display should output this string when
  2038.      they start up.
  2039.      String of commands to undo what is done by the `ti' string. 
  2040.      Programs that output the `ti' string on entry should output this
  2041.      string when they exit.
  2042.      String of commands to initialize the terminal for each login
  2043.      session.
  2044.      String which is the name of a file containing the string of
  2045.      commands to initialize the terminal for each session of use. 
  2046.      Normally `is' and `if' are not both used.
  2047.      Two more strings of commands to initialize the terminal for each
  2048.      login session.  The `i1' string (if defined) is output before
  2049.      `is' or `if', and the `i3' string (if defined) is output after.
  2050.      The reason for having three separate initialization strings is
  2051.      to make it easier to define a group of related terminal types
  2052.      with slightly different initializations.  Define two or three of
  2053.      the strings in the basic type; then the other types can override
  2054.      one or two of the strings.
  2055.      String of commands to reset the terminal from any strange mode
  2056.      it may be in.  Normally this includes the `is' string (or other
  2057.      commands with the same effects) and more.  What would go in the
  2058.      `rs' string but not in the `is' string are annoying or slow
  2059.      commands to bring the terminal back from strange modes that
  2060.      nobody would normally use.
  2061.      Numeric value, the initial spacing between hardware tab stop
  2062.      columns when the terminal is powered up.  Programs to initialize
  2063.      the terminal can use this to decide whether there is a need to
  2064.      set the tab stops.  If the initial width is 8, well and good; if
  2065.      it is not 8, then the tab stops should be set; if they cannot be
  2066.      set, the kernel is told to convert tabs to spaces, and other
  2067.      programs will observe this and do likewise.
  2068.      String of commands to clear all tab stops.
  2069.      String of commands to set tab stop at current cursor column on
  2070.      all lines.
  2071. @endnode
  2072. @node termcap-Pad_Specs "termcap-Pad_Specs"
  2073. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Status_Line " LINK termcap-Status_Line}     Prev: @{"Initialization" LINK termcap-Initialization}     
  2074. Padding Capabilities
  2075. ====================
  2076. There are two terminal capabilities that exist just to explain the
  2077. proper way to obey the padding specifications in all the command
  2078. string capabilities.  One, `pc', must be obeyed by all termcap-using
  2079. programs.
  2080.      Numeric value, the lowest baud rate at which padding is actually
  2081.      needed.  Programs may check this and refrain from doing any
  2082.      padding at lower speeds.
  2083.      String of commands for padding.  The first character of this
  2084.      string is to be used as the pad character, instead of using null
  2085.      characters for padding.  If `pc' is not provided, use null
  2086.      characters.  Every program that uses termcap must look up this
  2087.      capability and use it to set the variable `PC' that is used by
  2088.      `tputs'.    @{"Padding" LINK termcap-Padding}
  2089. Some termcap capabilities exist just to specify the amount of padding
  2090. that the kernel should give to cursor motion commands used in
  2091. ordinary sequential output.
  2092.      Numeric value, the number of msec of padding needed for the
  2093.      carriage-return character.
  2094.      Numeric value, the number of msec of padding needed for the
  2095.      newline (linefeed) character.
  2096.      Numeric value, the number of msec of padding needed for the
  2097.      backspace character.
  2098.      Numeric value, the number of msec of padding needed for the
  2099.      formfeed character.
  2100.      Numeric value, the number of msec of padding needed for the tab
  2101.      character.
  2102. In some systems, the kernel uses the above capabilities; in other
  2103. systems, the kernel uses the paddings specified in the string
  2104. capabilities `cr', `sf', `le', `ff' and `ta'.  Descriptions of
  2105. terminals which require such padding should contain the `dC' ... 
  2106. `dT' capabilities and also specify the appropriate padding in the
  2107. corresponding string capabilities.  Since no modern terminals require
  2108. padding for ordinary sequential output, you probably won't need to do
  2109. either of these things.
  2110. @endnode
  2111. @node termcap-Status_Line "termcap-Status_Line"
  2112. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Half-Line   " LINK termcap-Half-Line}     Prev: @{"Pad_Specs   " LINK termcap-Pad_Specs}     
  2113. Status Line
  2114. ===========
  2115. A "status line" is a line on the terminal that is not used for
  2116. ordinary display output but instead used for a special message.  The
  2117. intended use is for a continuously updated description of what the
  2118. user's program is doing, and that is where the name "status line"
  2119. comes from, but in fact it could be used for anything.  The
  2120. distinguishing characteristic of a status line is that ordinary
  2121. output to the terminal does not affect it; it changes only if the
  2122. special status line commands of this section are used.
  2123.      Flag whose presence means that the terminal has a status line. 
  2124.      If a terminal description specifies that there is a status line,
  2125.      it must provide the `ts' and `fs' capabilities.
  2126.      String of commands to move the terminal cursor into the status
  2127.      line.  Usually these commands must specifically record the old
  2128.      cursor position for the sake of the `fs' string.
  2129.      String of commands to move the cursor back from the status line
  2130.      to its previous position (outside the status line).
  2131.      Flag whose presence means that other display commands work while
  2132.      writing the status line.  In other words, one can clear parts of
  2133.      it, insert or delete characters, move the cursor within it using
  2134.      `ch' if there is a `ch' capability, enter and leave standout
  2135.      mode, and so on.
  2136.      String of commands to disable the display of the status line. 
  2137.      This may be absent, if there is no way to disable the status
  2138.      line display.
  2139.      Numeric value, the width of the status line.  If this capability
  2140.      is absent in a terminal that has a status line, it means the
  2141.      status line is the same width as the other lines.
  2142.      Note that the value of `ws' is sometimes as small as 8.
  2143. @endnode
  2144. @node termcap-Half-Line "termcap-Half-Line"
  2145. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Printer     " LINK termcap-Printer}     Prev: @{"Status_Line " LINK termcap-Status_Line}     
  2146. Half-Line Motion
  2147. ================
  2148. Some terminals have commands for moving the cursor vertically by
  2149. half-lines, useful for outputting subscripts and superscripts. 
  2150. Mostly it is hardcopy terminals that have such features.
  2151.      String of commands to move the cursor up half a line.  If the
  2152.      terminal is a display, it is your responsibility to avoid moving
  2153.      up past the top line; however, most likely the terminal that
  2154.      supports this is a hardcopy terminal and there is nothing to be
  2155.      concerned about.
  2156.      String of commands to move the cursor down half a line.  If the
  2157.      terminal is a display, it is your responsibility to avoid moving
  2158.      down past the bottom line, etc.
  2159. @endnode
  2160. @node termcap-Printer "termcap-Printer"
  2161. Up: @{"Capabilities" LINK termcap-Capabilities}     Next: @{"Printer     " LINK termcap-Printer}     Prev: @{"Half-Line   " LINK termcap-Half-Line}     
  2162. Controlling Printers Attached to Terminals
  2163. ==========================================
  2164. Some terminals have attached hardcopy printer ports.  They may be
  2165. able to copy the screen contents to the printer; they may also be
  2166. able to redirect output to the printer.  Termcap does not have
  2167. anything to tell the program whether the redirected output appears
  2168. also on the screen; it does on some terminals but not all.
  2169.      String of commands to cause the contents of the screen to be
  2170.      printed.  If it is absent, the screen contents cannot be printed.
  2171.      String of commands to redirect further output to the printer.
  2172.      String of commands to terminate redirection of output to the
  2173.      printer.  This capability must be present in the description if
  2174.      `po' is.
  2175.      String of commands to redirect output to the printer for next N
  2176.      characters of output, regardless of what they are.  Redirection
  2177.      will end automatically after N characters of further output. 
  2178.      Until then, nothing that is output can end redirection, not even
  2179.      the `pf' string if there is one.  The number N should not be
  2180.      more than 255.
  2181.      One use of this capability is to send non-text byte sequences
  2182.      (such as bit-maps) to the printer.
  2183. Most terminals with printers do not support all of `ps', `po' and
  2184. `pO'; any one or two of them may be supported.  To make a program
  2185. that can send output to all kinds of printers, it is necessary to
  2186. check for all three of these capabilities, choose the most convenient
  2187. of the ones that are provided, and use it in its own appropriate
  2188. fashion.
  2189. @endnode
  2190. @node termcap-Summary "termcap-Summary"
  2191. Up: @{"Top         " LINK termcap-Top}     Next: @{"Var_Index   " LINK termcap-Var_Index}     Prev: @{"Capabilities" LINK termcap-Capabilities}     
  2192. Summary of Capability Names
  2193. ***************************
  2194. Here are all the terminal capability names in alphabetical order with
  2195. a brief description of each.  For cross references to their
  2196. definitions, see the index of capability names (*note Cap Index::.).
  2197.      String to turn off alternate character set mode.
  2198.      String to insert a blank line before the cursor.
  2199.      String to insert N blank lines before the cursor.
  2200.      Flag: output to last column wraps cursor to next line.
  2201.      String to turn on alternate character set mode.like.
  2202.      Very obsolete alternative name for the `le' capability.
  2203.      String to sound the bell.
  2204.      Obsolete flag: ASCII backspace may be used for leftward motion.
  2205.      String to move the cursor left to the previous hardware tab stop
  2206.      column.
  2207.      Flag: `le' at left margin wraps to end of previous line.
  2208.      String to change terminal's command character.
  2209.      String to clear the line the cursor is on, and following lines.
  2210.      String to clear from the cursor to the end of the line.
  2211.      String to position the cursor at column C in the same line.
  2212.      String to clear the entire screen and put cursor at upper left
  2213.      corner.
  2214.      String to position the cursor at line L, column C.
  2215.      String to position the cursor at line L, column C, relative to
  2216.      display memory.
  2217.      Number: width of the screen.
  2218.      String to move cursor sideways to left margin.
  2219.      String to set the scroll region.
  2220.      Alternate form of string to set the scroll region.
  2221.      String to clear all tab stops.
  2222.      String to position the cursor at line L in the same column.
  2223.      Flag: data scrolled off top of screen may be scrolled back.
  2224.      Flag: data scrolled off bottom of screen may be scrolled back.
  2225.      Obsolete number: msec of padding needed for the backspace
  2226.      character.
  2227.      String to delete one character position at the cursor.
  2228.      Obsolete number: msec of padding needed for the carriage-return
  2229.      character.
  2230.      String to delete N characters starting at the cursor.
  2231.      Obsolete number: msec of padding needed for the formfeed
  2232.      character.
  2233.      String to delete the line the cursor is on.
  2234.      String to delete N lines starting with the cursor's line.
  2235.      String to enter delete mode.
  2236.      Obsolete number: msec of padding needed for the newline character.
  2237.      String to move the cursor vertically down one line.
  2238.      String to move cursor vertically down N lines.
  2239.      String to disable the display of the status line.
  2240.      Obsolete number: msec of padding needed for the tab character.
  2241.      String of commands to clear N characters at cursor.
  2242.      String to exit delete mode.
  2243.      String to leave insert mode.
  2244.      Flag: output of a space can erase an overstrike.
  2245.      Flag: other display commands work while writing the status line.
  2246.      String to advance to the next page, for a hardcopy terminal.
  2247.      String to move the cursor back from the status line to its
  2248.      previous position (outside the status line).
  2249.      Flag: this terminal type is generic, not real.
  2250.      Flag: hardcopy terminal.
  2251.      String to move the cursor down half a line.
  2252.      String to position cursor at upper left corner.
  2253.      Flag: the terminal has a status line.
  2254.      String to move the cursor up half a line.
  2255.      Flag: terminal cannot accept `~' as output.
  2256.      String to initialize the terminal for each login session.
  2257.      String to initialize the terminal for each login session.
  2258.      String to insert one character position at the cursor.
  2259.      String to insert N character positions at the cursor.
  2260.      String naming a file of commands to initialize the terminal.
  2261.      String to enter insert mode.
  2262.      Flag: outputting a space is different from moving over empty
  2263.      positions.
  2264.      String to output following an inserted character in insert mode.
  2265.      String to initialize the terminal for each login session.
  2266.      Number: initial spacing between hardware tab stop columns.
  2267.      String of input sent by function key 0 or 10.
  2268. `k1 ... k9'
  2269.      Strings of input sent by function keys 1 through 9.
  2270. `K1 ... K5'
  2271.      Strings sent by the five other keys in 3-by-3 array with arrows.
  2272.      String of input sent by the "clear all tabs" key.
  2273.      String of input sent by the "insert line" key.
  2274.      String of input sent by the "backspace" key.
  2275.      String of input sent by the "clear screen" key.
  2276.      String of input sent by typing the down-arrow key.
  2277.      String of input sent by the "delete character" key.
  2278.      String to make the function keys work locally.
  2279.      String of input sent by the "clear to end of line" key.
  2280.      String of input sent by the "scroll forward" key.
  2281.      String of input sent by typing the "home-position" key.
  2282.      String of input sent by the "home down" key.
  2283.      String of input sent by the "insert character" or "enter insert
  2284.      mode" key.
  2285.      String of input sent by typing the left-arrow key.
  2286.      String of input sent by the "delete line" key.
  2287.      Flag: the terminal has a Meta key.
  2288.      String of input sent by the "exit insert mode" key.
  2289.      Numeric value, the number of numbered function keys.
  2290.      String of input sent by the "next page" key.
  2291.      Very obsolete string listing the terminal's named function keys.
  2292.      String of input sent by the "previous page" key.
  2293.      String of input sent by typing the right-arrow key.
  2294.      String of input sent by the "scroll reverse" key.
  2295.      String to make the function keys transmit.
  2296.      String of input sent by the "clear to end of screen" key.
  2297.      String of input sent by the "clear tab stop this column" key.
  2298.      String of input sent by the "set tab stop in this column" key.
  2299.      String of input sent by typing the up-arrow key.
  2300.      String on keyboard labelling function key 0 or 10.
  2301. `l1 ... l9'
  2302.      Strings on keyboard labelling function keys 1 through 9.
  2303.      String to move the cursor left one column.
  2304.      String to move cursor left N columns.
  2305.      Number: height of the screen.
  2306.      String to position cursor at lower left corner.
  2307.      Number: lines of display memory.
  2308.      String to enter blinking mode.
  2309.      String to enter double-bright mode.
  2310.      String to turn off all appearance modes
  2311.      String to enter half-bright mode.
  2312.      Flag: cursor motion in insert mode is safe.
  2313.      String to enter invisible mode.
  2314.      String to enable the functioning of the Meta key.
  2315.      String to disable the functioning of the Meta key.
  2316.      String to enter protected mode.
  2317.      String to enter reverse-video mode.
  2318.      Flag: cursor motion in standout mode is safe.
  2319.      Obsolete flag: do not use ASCII carriage-return on this terminal.
  2320.      String to move the cursor right one column.
  2321.      Obsolete alternative name for the `do' and `sf' capabilities.
  2322.      Flag: the terminal does not normally scroll for sequential output.
  2323.      String to move to start of next line, possibly clearing rest of
  2324.      old line.
  2325.      Flag: terminal can overstrike.
  2326.      Number: the lowest baud rate at which padding is actually needed.
  2327.      String containing character for padding.
  2328.      String to terminate redirection of output to the printer.
  2329.      String to redirect further output to the printer.
  2330.      String to redirect N characters ofoutput to the printer.
  2331.      String to print the screen on the attached printer.
  2332.      String to move to last saved cursor position.
  2333.      String to move cursor right N columns.
  2334.      String to output character C repeated N times.
  2335.      String to reset the terminal from any strange modes.
  2336.      String to turn on an arbitrary combination of appearance modes.
  2337.      String to save the current cursor position.
  2338.      String to leave standout mode.
  2339.      String to scroll the screen one line up.
  2340.      String to scroll the screen N lines up.
  2341.      Number: width of magic standout cookie.  Absent if magic cookies
  2342.      are not used.
  2343.      String to enter standout mode.
  2344.      String to scroll the screen one line down.
  2345.      String to scroll the screen N line down.
  2346.      String to set tab stop at current cursor column on all lines. 
  2347.      programs.
  2348.      String to move the cursor right to the next hardware tab stop
  2349.      column.
  2350.      String to return terminal to settings for sequential output.
  2351.      String to initialize terminal for random cursor motion.
  2352.      String to move the terminal cursor into the status line.
  2353.      String to underline one character and move cursor right.
  2354.      String to turn off underline mode
  2355.      Number: width of underlining magic cookie.  Absent if
  2356.      underlining doesn't use magic cookies.
  2357.      Flag: underline by overstriking with an underscore.
  2358.      String to move the cursor vertically up one line.
  2359.      String to move cursor vertically up N lines.
  2360.      String to turn on underline mode
  2361.      String to make the screen flash.
  2362.      String to return the cursor to normal.
  2363.      String to make the cursor invisible.
  2364.      String to enhance the cursor.
  2365.      String to set the terminal output screen window.
  2366.      Number: the width of the status line.
  2367.      Flag: superbee terminal.
  2368.      Flag: cursor wraps in a strange way.
  2369.      Flag: clearing a line is the only way to clear the appearance
  2370.      modes of positions in that line (or, only way to remove magic
  2371.      cookies on that line).
  2372.      Flag: Teleray 1061; several strange characteristics.
  2373. @endnode
  2374. @node termcap-Var_Index "termcap-Var_Index"
  2375. Up: @{"Top         " LINK termcap-Top}     Next: @{"Cap_Index   " LINK termcap-Cap_Index}     Prev: @{"Summary     " LINK termcap-Summary}     
  2376. Variable and Function Index
  2377. ***************************
  2378. * Menu:
  2379.   @{"BC" LINK termcap-BC}  tgoto.
  2380.   @{"PC" LINK termcap-PC}  Output Padding.
  2381.   @{"UP" LINK termcap-UP}  tgoto.
  2382.   @{"ospeed" LINK termcap-ospeed}  Output Padding.
  2383.   @{"tgetent" LINK termcap-tgetent}  Find.
  2384.   @{"tgetflag" LINK termcap-tgetflag}  Interrogate.
  2385.   @{"tgetnum" LINK termcap-tgetnum}  Interrogate.
  2386.   @{"tgetstr" LINK termcap-tgetstr}  Interrogate.
  2387.   @{"tgoto" LINK termcap-tgoto}  tgoto.
  2388.   @{"tparam" LINK termcap-tparam}  tparam.
  2389.   @{"tputs" LINK termcap-tputs}  Output Padding.
  2390. @endnode
  2391. @node termcap-Cap_Index "termcap-Cap_Index"
  2392. Up: @{"Top         " LINK termcap-Top}     Next: @{"Index       " LINK termcap-Index}     Prev: @{"Var_Index   " LINK termcap-Var_Index}     
  2393. Capability Index
  2394. ****************
  2395. * Menu:
  2396.   @{"AL" LINK termcap-AL}  Insdel Line.
  2397.   @{"CC" LINK termcap-CC}  Basic.
  2398.   @{"CM" LINK termcap-CM}  Cursor Motion.
  2399.   @{"DC" LINK termcap-DC}  Insdel Char.
  2400.   @{"DL" LINK termcap-DL}  Insdel Line.
  2401.   @{"DO" LINK termcap-DO}  Cursor Motion.
  2402.   @{"IC" LINK termcap-IC}  Insdel Char.
  2403.   @{"K1...K5" LINK termcap-K1...K5}  Keypad.
  2404.   @{"LE" LINK termcap-LE}  Cursor Motion.
  2405.   @{"RI" LINK termcap-RI}  Cursor Motion.
  2406.   @{"SF" LINK termcap-SF}  Scrolling.
  2407.   @{"SR" LINK termcap-SR}  Scrolling.
  2408.   @{"UP" LINK termcap-UP}  Cursor Motion.
  2409.   @{"ae" LINK termcap-ae}  Standout.
  2410.   @{"al" LINK termcap-al}  Insdel Line.
  2411.   @{"am" LINK termcap-am}  Wrapping.
  2412.   @{"as" LINK termcap-as}  Standout.
  2413.   @{"bc" LINK termcap-bc}  Cursor Motion.
  2414.   @{"bl" LINK termcap-bl}  Bell.
  2415.   @{"bs" LINK termcap-bs}  Cursor Motion.
  2416.   @{"bt" LINK termcap-bt}  Cursor Motion.
  2417.   @{"bw" LINK termcap-bw}  Cursor Motion.
  2418.   @{"cS" LINK termcap-cS}  Scrolling.
  2419.   @{"cd" LINK termcap-cd}  Clearing.
  2420.   @{"ce" LINK termcap-ce}  Clearing.
  2421.   @{"ch" LINK termcap-ch}  Cursor Motion.
  2422.   @{"cl" LINK termcap-cl}  Clearing.
  2423.   @{"cm" LINK termcap-cm}  Cursor Motion.
  2424.   @{"co" LINK termcap-co}  Screen Size.
  2425.   @{"cr" LINK termcap-cr}  Cursor Motion.
  2426.   @{"cs" LINK termcap-cs}  Scrolling.
  2427.   @{"ct" LINK termcap-ct}  Initialization.
  2428.   @{"cv" LINK termcap-cv}  Cursor Motion.
  2429.   @{"dB" LINK termcap-dB}  Pad Specs.
  2430.   @{"dC" LINK termcap-dC}  Pad Specs.
  2431.   @{"dF" LINK termcap-dF}  Pad Specs.
  2432.   @{"dN" LINK termcap-dN}  Pad Specs.
  2433.   @{"dT" LINK termcap-dT}  Pad Specs.
  2434.   @{"da" LINK termcap-da}  Scrolling.
  2435.   @{"db" LINK termcap-db}  Scrolling.
  2436.   @{"dc" LINK termcap-dc}  Insdel Char.
  2437.   @{"dl" LINK termcap-dl}  Insdel Line.
  2438.   @{"dm" LINK termcap-dm}  Insdel Char.
  2439.   @{"do" LINK termcap-do}  Cursor Motion.
  2440.   @{"ds" LINK termcap-ds}  Status Line.
  2441.   @{"ec" LINK termcap-ec}  Clearing.
  2442.   @{"ed" LINK termcap-ed}  Insdel Char.
  2443.   @{"ei" LINK termcap-ei}  Insdel Char.
  2444.   @{"eo" LINK termcap-eo}  Basic.
  2445.   @{"es" LINK termcap-es}  Status Line.
  2446.   @{"ff" LINK termcap-ff}  Cursor Motion.
  2447.   @{"fs" LINK termcap-fs}  Status Line.
  2448.   @{"gn" LINK termcap-gn}  Basic.
  2449.   @{"hc" LINK termcap-hc}  Basic.
  2450.   @{"hd" LINK termcap-hd}  Half-Line.
  2451.   @{"ho" LINK termcap-ho}  Cursor Motion.
  2452.   @{"hs" LINK termcap-hs}  Status Line.
  2453.   @{"hu" LINK termcap-hu}  Half-Line.
  2454.   @{"hz" LINK termcap-hz}  Basic.
  2455.   @{"i1" LINK termcap-i1}  Initialization.
  2456.   @{"i3" LINK termcap-i3}  Initialization.
  2457.   @{"ic" LINK termcap-ic}  Insdel Char.
  2458.   @{"if" LINK termcap-if}  Initialization.
  2459.   @{"im" LINK termcap-im}  Insdel Char.
  2460.   @{"in" LINK termcap-in}  Insdel Char.
  2461.   @{"ip" LINK termcap-ip}  Insdel Char.
  2462.   @{"is" LINK termcap-is}  Initialization.
  2463.   @{"it" LINK termcap-it}  Initialization.
  2464.   @{"k1...k9" LINK termcap-k1...k9}  Keypad.
  2465.   @{"kA...kT" LINK termcap-kA...kT}  Keypad.
  2466.   @{"ka...ku" LINK termcap-ka...ku}  Keypad.
  2467.   @{"km" LINK termcap-km}  Meta Key.
  2468.   @{"l0...l9" LINK termcap-l0...l9}  Keypad.
  2469.   @{"le" LINK termcap-le}  Cursor Motion.
  2470.   @{"li" LINK termcap-li}  Screen Size.
  2471.   @{"ll" LINK termcap-ll}  Cursor Motion.
  2472.   @{"lm" LINK termcap-lm}  Scrolling.
  2473.   @{"mb" LINK termcap-mb}  Standout.
  2474.   @{"md" LINK termcap-md}  Standout.
  2475.   @{"me" LINK termcap-me}  Standout.
  2476.   @{"mh" LINK termcap-mh}  Standout.
  2477.   @{"mi" LINK termcap-mi}  Insdel Char.
  2478.   @{"mk" LINK termcap-mk}  Standout.
  2479.   @{"mm" LINK termcap-mm}  Meta Key.
  2480.   @{"mo" LINK termcap-mo}  Meta Key.
  2481.   @{"mp" LINK termcap-mp}  Standout.
  2482.   @{"mr" LINK termcap-mr}  Standout.
  2483.   @{"ms" LINK termcap-ms}  Underlining.
  2484.   @{"ms" LINK termcap-ms}  Standout.
  2485.   @{"nc" LINK termcap-nc}  Cursor Motion.
  2486.   @{"nd" LINK termcap-nd}  Cursor Motion.
  2487.   @{"nl" LINK termcap-nl}  Cursor Motion.
  2488.   @{"ns" LINK termcap-ns}  Scrolling.
  2489.   @{"nw" LINK termcap-nw}  Cursor Motion.
  2490.   @{"os" LINK termcap-os}  Basic.
  2491.   @{"pO" LINK termcap-pO}  Printer.
  2492.   @{"pb" LINK termcap-pb}  Pad Specs.
  2493.   @{"pc" LINK termcap-pc}  Pad Specs.
  2494.   @{"pf" LINK termcap-pf}  Printer.
  2495.   @{"po" LINK termcap-po}  Printer.
  2496.   @{"ps" LINK termcap-ps}  Printer.
  2497.   @{"rc" LINK termcap-rc}  Cursor Motion.
  2498.   @{"rp" LINK termcap-rp}  Basic.
  2499.   @{"rs" LINK termcap-rs}  Initialization.
  2500.   @{"sa" LINK termcap-sa}  Standout.
  2501.   @{"sc" LINK termcap-sc}  Cursor Motion.
  2502.   @{"se" LINK termcap-se}  Standout.
  2503.   @{"sf" LINK termcap-sf}  Scrolling.
  2504.   @{"sg" LINK termcap-sg}  Standout.
  2505.   @{"so" LINK termcap-so}  Standout.
  2506.   @{"sr" LINK termcap-sr}  Scrolling.
  2507.   @{"st" LINK termcap-st}  Initialization.
  2508.   @{"ta" LINK termcap-ta}  Cursor Motion.
  2509.   @{"te" LINK termcap-te}  Initialization.
  2510.   @{"ti" LINK termcap-ti}  Initialization.
  2511.   @{"ts" LINK termcap-ts}  Status Line.
  2512.   @{"uc" LINK termcap-uc}  Underlining.
  2513.   @{"ue" LINK termcap-ue}  Underlining.
  2514.   @{"ug" LINK termcap-ug}  Underlining.
  2515.   @{"ul" LINK termcap-ul}  Underlining.
  2516.   @{"up" LINK termcap-up}  Cursor Motion.
  2517.   @{"us" LINK termcap-us}  Underlining.
  2518.   @{"vb" LINK termcap-vb}  Bell.
  2519.   @{"ve" LINK termcap-ve}  Cursor Visibility.
  2520.   @{"vi" LINK termcap-vi}  Cursor Visibility.
  2521.   @{"vs" LINK termcap-vs}  Cursor Visibility.
  2522.   @{"wi" LINK termcap-wi}  Windows.
  2523.   @{"ws" LINK termcap-ws}  Status Line.
  2524.   @{"xb" LINK termcap-xb}  Basic.
  2525.   @{"xn" LINK termcap-xn}  Wrapping.
  2526.   @{"xs" LINK termcap-xs}  Standout.
  2527.   @{"xt" LINK termcap-xt}  Cursor Motion.
  2528.   @{"xt" LINK termcap-xt}  Standout.
  2529. @endnode
  2530. @node termcap-Index "termcap-Index"
  2531. Up: @{"Top         " LINK termcap-Top}     Next: @{"Index       " LINK termcap-Index}     Prev: @{"Cap_Index   " LINK termcap-Cap_Index}     
  2532. Concept Index
  2533. *************
  2534. * Menu:
  2535.   @{"%" LINK termcap-%}  Encode Parameters.
  2536.   @{"Superbee" LINK termcap-Superbee}  Basic.
  2537.   @{"appearance_modes" LINK termcap-appearance_modes}  Standout.
  2538.   @{"bell" LINK termcap-bell}  Bell.
  2539.   @{"clearing_the_screen" LINK termcap-clearing_the_screen}  Clearing.
  2540.   @{"command_character" LINK termcap-command_character}  Basic.
  2541.   @{"cursor_motion" LINK termcap-cursor_motion}  Cursor Motion.
  2542.   @{"delete_character" LINK termcap-delete_character}  Insdel Char.
  2543.   @{"delete_line" LINK termcap-delete_line}  Insdel Line.
  2544.   @{"delete_mode" LINK termcap-delete_mode}  Insdel Char.
  2545.   @{"description_format" LINK termcap-description_format}  Format.
  2546.   @{"erasing" LINK termcap-erasing}  Clearing.
  2547.   @{"generic_terminal_type" LINK termcap-generic_terminal_type}  Basic.
  2548.   @{"home_position" LINK termcap-home_position}  Cursor Motion.
  2549.   @{"inheritance" LINK termcap-inheritance}  Inheriting.
  2550.   @{"initialization" LINK termcap-initialization}  Initialization.
  2551.   @{"insert_character" LINK termcap-insert_character}  Insdel Char.
  2552.   @{"insert_line" LINK termcap-insert_line}  Insdel Line.
  2553.   @{"insert_mode" LINK termcap-insert_mode}  Insdel Char.
  2554.   @{"line_speed" LINK termcap-line_speed}  Output Padding.
  2555.   @{"magic_cookie" LINK termcap-magic_cookie}  Standout.
  2556.   @{"meta_key" LINK termcap-meta_key}  Meta Key.
  2557.   @{"names_of_terminal_types" LINK termcap-names_of_terminal_types}  Naming.
  2558.   @{"overstrike" LINK termcap-overstrike}  Basic.
  2559.   @{"padding" LINK termcap-padding}  Pad Specs.
  2560.   @{"padding" LINK termcap-padding}  Padding.
  2561.   @{"parameters" LINK termcap-parameters}  Parameters.
  2562.   @{"printer" LINK termcap-printer}  Printer.
  2563.   @{"repeat_output" LINK termcap-repeat_output}  Basic.
  2564.   @{"reset" LINK termcap-reset}  Initialization.
  2565.   @{"screen_size" LINK termcap-screen_size}  Screen Size.
  2566.   @{"screen_size" LINK termcap-screen_size}  Naming.
  2567.   @{"screen_size" LINK termcap-screen_size}  Screen Size.
  2568.   @{"scrolling" LINK termcap-scrolling}  Scrolling.
  2569.   @{"standout" LINK termcap-standout}  Standout.
  2570.   @{"status_line" LINK termcap-status_line}  Status Line.
  2571.   @{"tab_stops" LINK termcap-tab_stops}  Initialization.
  2572.   @{"termcap" LINK termcap-termcap}  Introduction.
  2573.   @{"terminal_flags_(kernel)" LINK termcap-terminal_flags_(kernel)}  Initialize.
  2574.   @{"underlining" LINK termcap-underlining}  Underlining.
  2575.   @{"visibility" LINK termcap-visibility}  Cursor Visibility.
  2576.   @{"visible_bell" LINK termcap-visible_bell}  Bell.
  2577.   @{"window" LINK termcap-window}  Windows.
  2578.   @{"wrapping" LINK termcap-wrapping}  Wrapping.
  2579.   @{"wrapping" LINK termcap-wrapping}  Naming.
  2580. @endnode
  2581.